首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

Struts 错误处理(二十二)

2012-09-27 
Struts 异常处理(二十二)1.演示除数异常struts.xml?xml version1.0 encodingUTF-8 ?!DOCTYPE str

Struts 异常处理(二十二)
1.演示除数异常
struts.xml

<?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE struts PUBLIC"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN""http://struts.apache.org/dtds/struts-2.3.dtd"><struts>      <!-- 定义国际化资源文件的基本名称 -->    <package name="/user" extends="struts-default">    <global-results>    <result name="error">/error.jsp</result>    </global-results>       <global-exception-mappings>       <exception-mapping result="error" exception="java.lang.ArithmeticException"></exception-mapping>       </global-exception-mappings>        <action name="exception" method="jisuan"><result name="success">/exception.jsp</result>        </action>    </package></struts>


2.action.xml
package com.sh.action;import com.opensymphony.xwork2.ActionSupport;public class ExceptionAction extends ActionSupport {private Integer a;private Integer b;private Integer c;public String jisuan()throws Exception{c=a/b;return SUCCESS;}public Integer getA() {return a;}//get set}


3.exception.jsp
<body>    <center>    <s:form action="exception" theme="simple">    <s:textfield name="a" label="" cssStyle="width:60"></s:textfield>    除以    <s:textfield name="b" label="" cssStyle="width:60"></s:textfield>    等于    <s:textfield name="c" label="" cssStyle="width:60"></s:textfield>    <s:submit value="计算"/>    </s:form>    </center>  </body>

4.error.jsp
 <body>             除0异常!  </body>

热点排行