I want to my servlet mapping to /*, but it failed to infinite loop.
I tried one servlet which mapping to "/*" just render one jsp page "/WEB-INF/jsps/hello.jsp"
<servlet>
<servlet-name>helloServlet</servlet-name>
<servlet-class>my.HelloServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>helloServlet</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
and the java code is:
class HelloServlet extends HttpServlet {
public void doGet(HttpServletRequest request, HttpServletResponse response){
request.getRequestDispatcher("/WEB-INF/jsps/hello.jsp").forward(request, response);
}
}
but this will failed with infinite loop, if I mapping to "/hello" everything will be ok.
Since the helloServlet mapping to /*, it will also catch the requestDispatcher's forward and cause the infinitely loop.
I need to mapping to /*, how can I do it?
PS: SpringMVC framework can mapping to /*, anyone knows its implementation?
EDIT: sorry, seems SpringMVC is mapping to / not /*, maybe this is the reason.
*is a wildcard. What kind of urls are you trying to match with your pattern? – Andrew Logvinov Dec 18 '12 at 14:20