Struts 2 - 如何将通配符匹配的方法映射到异常?
我正在使用 Struts2。这是我的 struts.xml 文件的片段:
<action name="*test" class="fend.config.TestAction" method="{1}">
<exception-mapping result="fail" exception="java.lang.UnsupportedOperationException"/>
<result name="success">/registerCrisis.jsp</result>
<result name="dummy">/dummy.jsp</result>
<result name="fail">error.jsp</result>
<interceptor-ref name="configStack"/>
</action>
当我运行应用程序时,如下所示: http://localhost:8080 /appContext/viewtest.action struts调用TestAction类中的view方法。在视图方法中,我放置了生成 java.lang.UnsupportedOperationException 的代码,仅用于测试目的。
我的目的是重定向到名为失败的结果,以便显示 error.jsp。但它没有重定向到该页面。我错过了什么?
谢谢。
I'm working with Struts2. Here's a snippet of my struts.xml file:
<action name="*test" class="fend.config.TestAction" method="{1}">
<exception-mapping result="fail" exception="java.lang.UnsupportedOperationException"/>
<result name="success">/registerCrisis.jsp</result>
<result name="dummy">/dummy.jsp</result>
<result name="fail">error.jsp</result>
<interceptor-ref name="configStack"/>
</action>
When I run the application like: http://localhost:8080/appContext/viewtest.action struts calls the view method in the TestAction class. I the view method I put code that generates a java.lang.UnsupportedOperationException just for testing purpose.
What I intended was to redirect to the result named fail, so that error.jsp is showned. But it's not redirecting to the page. What I've missed?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在现有操作下创建另一个操作,这可能允许其余路径(错误路径)重定向另一个操作,这可能允许其余路径(错误路径)重定向另一个页面。
You can create another action under your exist action , this may allow the rest of paths (errors path) to redirect another action , this may allow the rest of paths (errors path) to redirect another page.