Tagged Questions
The servlet-dispatching tag has no wiki summary.
1
vote
2answers
1k views
Servlet Filter going in infinite loop when FORWARD used in mapping in JSF
I have a filter defined in web.xml like following:-
<filter-mapping>
<filter-name>AuthenticationFilter</filter-name>
<url-pattern>/*</url-pattern>
...
1
vote
3answers
198 views
How to link different Servlet together?
First of all, I did not use Spring MVC. :) :) Just want to get it out first.
Now what I have is different JSP pages that making calls to different Servlets. All the pieces work great individually but ...
1
vote
1answer
157 views
How is dispatching controlled in JAX-RS?
I'm writing a RESTful Web Service with RESTeasy. This is an implementation of JAX-RS. You annotate a class or method with a single @Path annotation. Regular expressions are used to get path ...