0

我在我的项目中应用了一个过滤器,如下所示:

public class Filter implements javax.servlet.Filter{

    @Override
    public void destroy() {
        // TODO Auto-generated method stub

    }

    @Override
    public void doFilter(ServletRequest request, ServletResponse response,
            FilterChain chain) throws IOException, ServletException {
            if (((HttpServletRequest) request).getSession().getAttribute("admin") == null) {
                // Not logged in, so redirect request to login page.
                ((HttpServletResponse) response).sendRedirect("../index.xhtml");
            }
        }


    @Override
    public void init(FilterConfig arg0) throws ServletException {
        // TODO Auto-generated method stub

    }

它在web.xml里面的入口如下

<filter>  
        <filter-name>Filter</filter-name>  
        <filter-class>com.kc.aop.bean.Filter</filter-class>  
  </filter> 
  <filter-mapping>  
        <filter-name>Filter</filter-name>  
        <url-pattern>/admin/*</url-pattern>  
   </filter-mapping>

我的管理文件夹中有以下文件:

dashboard.xhtml
introduction.xhtml
news.xhtml

Introduction.xhtml 和 news.xhtml 使用嵌入到 dashboard.xhtml 中

<iframe id= "iframe" width="1000px" height="300px" src="introduction.xhtml"></iframe> 

我在我的 index.xhtml 中有一个登录名,但是当我尝试登录时,我可以看到我的 dashboard.xhtml,但是使用 Introduction.xhtml 的 iframe 显示以下错误。

XML Parsing Error: no element found
Location: http://localhost:8080/AOP/admin/introduction.xhtml
Line Number 1, Column 1:

任何想法,为什么这样的行为。我的 doFilter 实现有问题吗?

4

1 回答 1

1

您需要调用filterChain.doFilter(request, response);您的doFilter方法实现。否则,您的其余过滤器将不会被调用。

于 2013-05-01T11:17:26.563 回答