gpt4 book ai didi

java - Struts 2 - 如何将通配符匹配的方法映射到异常?

转载 作者:行者123 更新时间:2023-12-01 05:55:36 25 4
gpt4 key购买 nike

我正在使用 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方法。在 View 方法中,我放置了生成 java.lang.UnsupportedOperationException 的代码,仅用于测试目的。

我的目的是重定向到名为 failed 的结果,以便显示 error.jsp。但它没有重定向到该页面。我错过了什么?

谢谢。

最佳答案

您可以在现有操作下创建另一个操作,这可能允许其余路径(错误路径)重定向另一个操作,这可能允许其余路径(错误路径)重定向另一个页面。

<action name="*test" class="fend.config.TestAction" method="{1}">

<result name="success">/registerCrisis.jsp</result>
<result name="dummy">/dummy.jsp</result>
<result name="fail">error.jsp</result>
<interceptor-ref name="configStack"/>
</action>

<!-- SOLUTION, ADD THIS-->

<action name="*" method="myErrorMethod" class="fend.config.TestAction">
<result type="redirectAction">
<param name="namespace">/myErrorPath</param>
<param name="actionName">myErrorMethodtest</param><!--*test (if your error method has wildcard) -->
</result>
</action>

关于java - Struts 2 - 如何将通配符匹配的方法映射到异常?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3118093/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com