TA的每日心情 | 开心 2021-3-12 23:18 |
---|
签到天数: 2 天 [LV.1]初来乍到
|
1,配置ExceptionHandler
使用<global-exceptions>来配置异常捕捉器,可以配置多种类型的异常捕捉器。其中key为错误信息,配置在资源文件中。type为异常类型,handler为异常的处理类。如:
<global-exceptions>
<exception key="login.error" type="javax.security.auth.login.AccountException"
handler="com.helloweensfei.struts.exceptionhandler.AccountExceptionHandler"
/>
</global-exceptions>
2,在stuts-config.xml中使用通配符
<action path="/edit*" //使用通配符
type="org.apache.struts.webapp.example.Edit{1}Action" //{1}表示通配符代表的内容
name="{1}Form" //{1}表示通配符代表的内容
scope="request"
validate="false">
<forward name="failure" path="/mainMenu.jsp"/> //失败页面
<forward name="success' path="/{1}.jsp"/> //{1}表示通配符代表的内容
</action>
|
|