如何在struts 1.3.10中实现ServletContextAware接口?

时间:2013-12-07 06:07:29

标签: java jsp struts2 jsp-tags struts-1

使用struts 1.3.10框架开发Web应用程序。

所以,我将在整个应用程序中管理会话(也在所有jsp页面和动作类中),然后我在struts 1.3.10中搜索会话管理,但我通过使用Aware接口获得了struts2应用程序的会话管理。

如果可能的话,如何在STRUTS 1.3.10(或)中实现servletcontextaware接口,使用struts 1.3.10实现整个应用程序的会话..........

提前致谢。

1 个答案:

答案 0 :(得分:0)

我使用过滤器来访问我的应用程序中的安全性会话。

在web.xml中:

<filter>
    <filter-name>SecurityFiltrer</filter-name>
    <filter-class>app.filtrer.SecurityFiltrer</filter-class>
</filter>

SecurityFilter.java:

public class SecurityFilter implements Filter  {

    public SecurityFilter() {
        super();
    }

    public void doFilter(ServletRequest req, ServletResponse response, FilterChain chain) throws IOException, ServletException {

        HttpServletRequest request = (HttpServletRequest) req;
        HttpSession session = request.getSession();

            // DO YOUR STUFF HERE

    }
}