是否可以在显示index.jsp之前调用Servlet
当用户第一次访问我的 Java Web 应用程序时,在显示 index.jsp
之前,我需要执行一些驻留在 Struts2 Action 类中的预处理逻辑。我尝试在 web.xml
中使用以下代码片段,但失败了:
web.xml:
<welcome-file-list>
<welcome-file>loginPage.action</welcome-file>
</welcome-file-list>
总而言之,当用户点击 http://myjavawebap.com,首先需要调用 struts2 操作
loginPage
,然后该操作应分派默认的 index.jsp 文件。有什么办法可以实现这一点吗?
I need to do some pre-processing logic which reside in my Struts2 Action class, before showing index.jsp
when user access my Java web application for the first time. I tried using the below snippet in web.xml
but it failed:
web.xml:
<welcome-file-list>
<welcome-file>loginPage.action</welcome-file>
</welcome-file-list>
To summarize, when user hits http://myjavawebap.com
, first the struts2 action loginPage
needs to be called and then the action should dispatch the default index.jsp file. Is there any way to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需重定向或转发到index.jsp 页面中的loginPage 并将index.jsp 作为欢迎文件即可。
另一种解决方案可能是使用过滤器。
Just redirect or forward to the loginPage in your index.jsp page and make index.jsp as the welcome-file.
Another solution could be to use a filter.
您可能想尝试使用 Servlet 过滤器 进行请求预处理。
另外,Struts 2 有一个类似的概念,称为 拦截器,可能对您有用这个案例。
You might want to try a servlet filter for request preprocessing.
Also Struts 2 has a similar concept called Interceptors that might work for you in this case.