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

发布于 2024-09-06 16:40:14 字数 877 浏览 2 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

疯到世界奔溃 2024-09-13 16:40:14

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

<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>

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.

<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>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文