当前位置: 代码迷 >> Java Web开发 >> 求教struts中session完事页面跳转使用过滤器filter的用法
  详细解决方案

求教struts中session完事页面跳转使用过滤器filter的用法

热度:95   发布时间:2016-04-17 12:41:49.0
求教struts中session结束页面跳转使用过滤器filter的用法
最近在做一个项目,使用环境是Eclipse做开发环境,Tomcat 5.0做服务器软件,使用Struts 1.1架构,JSP编程。

上司布置了一个任务,需要控制用户登陆超时的情况下,跳转到登陆页面,并且显示出超时的信息,通知用户重新登陆。

原先项目里面并没有设置这样的跳转机制,仅仅是出现空白页面,必须手动在地址栏中输入主页地址,然后再点击登陆。

现在我看下来有两个方法:
1, 在每个JSP文件的头都加上跳转。但是有几个问题出现了,在根目录下的JSP文件和在tiles目录下的JSP都必须加么?我还没有弄明白这两个目录下JSP文件之间的关系,好像tiles里面的是页面的内容,而根目录下的是引用JAVA类,以及调用tiles目录下的JSP文件。这里我就搞不清楚应该对哪个JSP文件进行修改了。主要是对Struts的架构还没有完整理解。

2, 写一个filter类,在web.xml中引用。这样的好处是直接就控制了所有的JSP文件,还可以单独排除过滤Login这个页面,基本可以达到要求。但是问题是这样一个filter类应该是如何实现?一直没找到合适的范例,应该打到哪个JAVA包中呢?

不知道我有没有问清楚,最主要还是对Struts的架构没有很好理解。希望各位DX能不吝赐教,先谢谢啦!!!

------解决方案--------------------
1.写一个过滤器(Filter)
Java code
/** * 设置字符集、过滤未登录的非法请求 */public class UserLoginFilter implements Filter {    protected String encoding = null;    protected FilterConfig filterConfig = null;    protected boolean ignore = false;    protected String forwardPath = null;    public void destroy() {        this.encoding = null;        this.filterConfig = null;    }    public void doFilter(ServletRequest request, ServletResponse response,            FilterChain chain) throws IOException, ServletException {        // 设置编码方式,web.xml里面有filter参数的初始化设置        if (ignore || (request.getCharacterEncoding() == null)) {            String encoding = selectEncoding(request);            if (encoding != null)                request.setCharacterEncoding(encoding);        }        HttpServletRequest httpServletRequest = (HttpServletRequest) request;        HttpServletResponse httpServletResponse = (HttpServletResponse) response;        String requesturi = httpServletRequest.getRequestURI();        // 通过检查session中的变量,过虑请求        HttpSession session = httpServletRequest.getSession();        Object currentUser = session.getAttribute(AppConstants.LOGIN_USER);        // 当前会话用户为空而且不是请求登录,退出登录,欢迎页面和根目录则退回到应用的根目录        if (currentUser == null                && !requesturi.endsWith("/processLogin.do")                && !requesturi.endsWith("/logout.do")                && !requesturi.endsWith("/index.jsp")                && !requesturi.endsWith(httpServletRequest.getContextPath()                        + "/")) {            httpServletResponse.sendRedirect(httpServletRequest                    .getContextPath()                    + "/");            return;        }        chain.doFilter(request, response);    }    public void init(FilterConfig filterConfig) throws ServletException {        this.filterConfig = filterConfig;        this.encoding = filterConfig.getInitParameter("encoding");        this.forwardPath = filterConfig.getInitParameter("forwardpath");        String value = filterConfig.getInitParameter("ignore");        if (value == null)            this.ignore = true;        else if (value.equalsIgnoreCase("true"))            this.ignore = true;        else if (value.equalsIgnoreCase("yes"))            this.ignore = true;        else            this.ignore = false;    }    protected String selectEncoding(ServletRequest request) {        return (this.encoding);    }}
------解决方案--------------------
多谢楼上的,我先看看。感觉基本实现了我需要的功能。不过需要改动的地方还很多。赫赫。得看看把这个filter类放在哪个包里面先。
-----------------------------
filter类与普通类不同 它的作用域是在web.xml中进行配置
<filter>
<filter-name>Login Filter</filter-name>
<filter-class>com.bluedn.common.control.UserLoginFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>Login Filter</filter-name>
<url-pattern>此处写入应用范围 /*应用于整个站点所有文件</url-pattern>
</filter-mapping>
  相关解决方案