Simple Hack Alternative to URL Redirect for Struts Actions or Similar Frameworks
Join the DZone community and get the full member experience.
Join For FreeRecently as a requirement I had to work on a URL Redirect for loading a particular Action as entry point. As the usual procedure we choose one of the following methods to proceed with
- Pass the chosen url in sendRedirect method of HttpServletInterface
/* * HttpServletResponse Object */ response.sendRedirect("/customAction.do");
- Pass the chosen url in HTML META tag and auto refresh page.
<meta http-equiv="refresh" content="2;url=http://www.example.com/myapp/customAction.do">
Instead of using either of these, we can proceed and achieve this through the Web Application Deployment Descriptor ( web.xml) file by following these steps.
- web.xml has tag elements <welcome-file-list> and <welcome-file> which route to default file(s) specified.
- Example of <welcome-file-list>
<welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> </welcome-file-list>
- To forward to a particular action file or similar.
<welcome-file>customAction.do</welcome-file>
- Create an empty file with the same name in application war root folder [ Tested On JBoss 4.0.x and Tomcat Servers].
- After deployment, targeted ActionFile file can be accessed with default application URL, Instead of giving absolute URL.
As you can see above, we tested this on JBoss 4.0x and Tomcat. Please let me know whether we would need to create the empty files, as in Step 4, in other Java Application Servers.
Web application
Hack (falconry)
Opinions expressed by DZone contributors are their own.
Trending
-
Auditing Tools for Kubernetes
-
The SPACE Framework for Developer Productivity
-
Effortlessly Streamlining Test-Driven Development and CI Testing for Kafka Developers
-
Microservices Decoded: Unraveling the Benefits, Challenges, and Best Practices for APIs
Comments