How to define a global page when requested page or method is not found?(找不到请求的页面或方法时如何定义全局页面?)
问题描述
我知道如何在遇到异常时在我们定义的包中调整全局错误重定向页面,只需在 struts.xml
的父包中添加以下配置:
I know how to fine a global error redirect page in our defined package when exception encountered that just by adding the following configuration in the parent package in struts.xml
:
<global-results>
<result name="error">/error.jsp</result>
</global-results>
<global-exception-mappings>
<exception-mapping exception="java.lang.Exception" result="error" />
</global-exception-mappings>
但是好像无法捕捉到请求的资源、方法、页面未找到等异常,我的意思是如何捕捉struts2级别的错误,然后我可以做点什么来处理.
But It seems to not able to catch those exceptions like requested resources, methods, pages are not found, I mean how to catch the struts2-level errors, and then I can do something to handle it.
推荐答案
您应该在 struts.xml
中定义您的未知处理程序.当执行未知的操作、结果或方法时,框架会调用未知的处理程序.
You should define your unknown handler in the struts.xml
. Unknown handlers are called by the framework, when an unknown action, result, or method are executed.
<bean type="com.opensymphony.xwork2.UnknownHandler" name="handler" class="com.package.SomeUnknownHandler"/>
该类应该实现UknownHandler
接口来处理这些情况:
The class should implement UknownHandler
interface to handle the cases:
- 当动作配置未知时
- 当找不到操作和结果代码的结果时
- 找不到操作方法时
这篇关于找不到请求的页面或方法时如何定义全局页面?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:找不到请求的页面或方法时如何定义全局页面?
基础教程推荐
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 降序排序:Java Map 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01