|
Java™ by example!
|
|
|
How do I redirect a request to a servlet?
You can use the servlet-mapping functionality. It allows you to redirect requests to a servlet of your choosing, all declaratively specified in web.xml. web.xml:
TestServlet.java
Create a web application from this, say exp.war, deploy it with your servlet engine. Then visit http://localhost:8080/exp/login.jsp. Notice that the request is redirected to TestServlet, but the URL in the browser is still pointing at the original request.
Further Information
Author of answer: Joris Van den Bogaert
Comments to this answer are only viewable by members. Login or become a member!
|
|
|
|
|