I have a web application with the following structure:

TOMCAT_HOME
  |
   webapps
     |_myapp
          |-html/
          |-various directories
          |-WEB-INF/
          |-index.html

The application has various servlets that are registered over various paths.
The application itself can be accessed via http://IP:PORT/myapp/
This of courses causes to get the index.html (in the welcome list).
My question is, how would I register a filter for specifically the access of the root directory but not the subdirectories i.e. the url-mapping not to be /* If I place as url-pattern / seems not to work.
So the filter would intercept only this request http://IP:PORT/myapp/ and not http://IP:PORT/myapp/path or http://IP:PORT/myapp/servlet/path.
Additionally the filter would intercept a request like http://IP:PORT/myapp/index.html which is equivalent to the one I aim.

Thanks

link|improve this question

73% accept rate
feedback

2 Answers

up vote 1 down vote accepted

You can easily test for / and do your thing, otherwise let it pass through. With a /* URL pattern.

@Override
public void doFilter(ServletRequest req,ServletResponse res,FilterChain chain)
    throws IOException,ServletException{

    HttpServletRequest request=(HttpServletRequest)req;
    String path=request.getServletPath();

    if(path.equals("/") || path.equals("/index.html"){
        // do your thing
    }

    chain.doFilter(req,res);
}
link|improve this answer
That is how I do it now, but I do not want to hardcode string comparisons of the paths in the code.Would like to do it via configuration if possible – user384706 Feb 17 '11 at 20:27
@user: In that case you should configure an init parameter in your web.xml and retrieve it from the ServletContext which you can get from the FilterConfig object passed into the init() method. – Jeremy Heiler Feb 17 '11 at 20:37
Sorry I do not follow:what parameter to pass?The path? – user384706 Feb 17 '11 at 22:05
Any of the values you wish to pass into your application from web.xml should be an init parameter. – Jeremy Heiler Feb 18 '11 at 1:36
feedback

Why not set the filter as /index.html then? It will not cause your subdirectories to be filtered.

link|improve this answer
1  
Indeed. You only need to add it as welcome-file. – BalusC Feb 17 '11 at 20:05
So http://IP:PORT/myapp/ is also captured? – user384706 Feb 17 '11 at 20:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.