Objective
My goal is to get a servlet filter to process requests to the home page before forwarding them to index.jsp.
Problem
I'm having trouble getting my filter to receive requests from "/". It's URL pattern is
<url-pattern>/</url-pattern>
Instead requests to that pattern end up directed straight to index.jsp.
I read a previous post Servlet Mapping / and /* and wonder if mapping to "/" only works if there is no index.jsp in the application folder?