总结Java的Struts框架的异常处理方法
struts提供了一个更简单的方式来处理未捕获的异常,并将用户重定向到一个专门的错误页面。您可以轻松地struts配置到不同的异常有不同的错误页面。
struts的异常处理所使用的“exception”拦截容易。“exception”拦截器作为默认的栈的一部分,所以不必做任何额外的配置。它可为准备使用的盒。让我们看到了一个简单的hello world示例进行一些修改在helloworldaction.java文件。在这里,我们特意推出了一个空指针异常在我们helloworldaction动作代码。
package com.yiibai.struts2; import com.opensymphony.xwork2.actionsupport; public class helloworldaction extends actionsupport{ private string name; public string execute(){ string x = null; x = x.substring(0); return success; } public string getname() { return name; } public void setname(string name) { this.name = name; } }
让我们 helloworld.jsp保持内容如下:
<%@ page contenttype="text/html; charset=utf-8" %> <%@ taglib prefix="s" uri="/struts-tags" %> <html> <head> <title>hello world</title> </head> <body> hello world, <s:property value="name"/> </body> </html>
以下是内容index.jsp:
<%@ page language="java" contenttype="text/html; charset=iso-8859-1" pageencoding="iso-8859-1"%> <%@ taglib prefix="s" uri="/struts-tags"%> <!doctype html public "-//w3c//dtd html 4.01 transitional//en" "http://www.w3.org/tr/html4/loose.dtd"> <html> <head> <title>hello world</title> </head> <body> <h1>hello world from struts2</h1> <form action="hello"> <label for="name">please enter your name</label><br/> <input type="text" name="name"/> <input type="submit" value="say hello"/> </form> </body> </html>
struts.xml 应该像这样:
<?xml version="1.0" encoding="utf-8"?> <!doctype struts public "-//apache software foundation//dtd struts configuration 2.0//en" "http://struts.apache.org/dtds/struts-2.0.dtd"> <struts> <constant name="struts.devmode" value="true" /> <package name="helloworld" extends="struts-default"> <action name="hello" class="com.yiibai.struts2.helloworldaction" method="execute"> <result name="success">/helloworld.jsp</result> </action> </package> </struts>
现在右击项目名称,并单击export > war file创建一个war文件。然后部署此war在tomcat的webapps目录下。最后,启动tomcat 服务器和尝试访问url http://localhost:8080/helloworldstruts2/index.jsp。这会给出以下画面:
输入一个值“struts2”,并提交页面。应该看到以下页面:
在上面的例子所示,默认的异常拦截器做了非常出色的处理异常。现在,让我们创建一个专用的错误页面,我们的例外。创建一个文件名为error.jsp 如以下内容:
<%@ page language="java" contenttype="text/html; charset=iso-8859-1" pageencoding="iso-8859-1"%> <%@ taglib prefix="s" uri="/struts-tags"%> <!doctype html public "-//w3c//dtd html 4.01 transitional//en" "http://www.w3.org/tr/html4/loose.dtd"> <html> <head> <title></title> </head> <body> this is my custom error page </body> </html>
let us now configure struts to use this this error page in case of an exception. let us modify thestruts.xml as follows:
<?xml version="1.0" encoding="utf-8"?> <!doctype struts public "-//apache software foundation//dtd struts configuration 2.0//en" "http://struts.apache.org/dtds/struts-2.0.dtd"> <struts> <constant name="struts.devmode" value="true" /> <package name="helloworld" extends="struts-default"> <action name="hello" class="com.yiibai.struts2.helloworldaction" method="execute"> <exception-mapping exception="java.lang.nullpointerexception" result="error" /> <result name="success">/helloworld.jsp</result> <result name="error">/error.jsp</result> </action> </package>
</struts>
在上面的例子所示,现在我们已经配置 struts使用专用error.jsp的nullpointerexception异常。如果现在重新运行该程序,现在看到下面的输出:
根据<exception-mapping…../>元素出现位置的不同,异常映射又可分为两种:
局部异常映射:将<exception-mapping… />元素作为<action…/>元素的子元素配置;
全局异常映射:将<exception-mapping… />元素作为<global-exception-mappings… />元素的子元素配置;
全局异常映射对所有的action都有效,但局部异常映射仅对该异常映射所在的action有效。
如果局部异常映射和全局异常映射配置了同一个异常类型,在<action…./>元素内的局部异常映射将覆盖全局异常映射。
struts.xml
<package name="ssh2" extends="struts-default"> <global-results> <result name="sql">/exception.jsp</result> <result name="root">/exception.jsp</result> </global-results> <global-exception-mappings> <exception-mapping exception="java.sql.sqlexception" result="sql"/> <exception-mapping exception="java.lang.exception" result="root"/> </global-exception-mappings> <action name="login" class="loginaction"> <result>/welcome.jsp</result> <result name="nullpointer">/nullpointer.jsp</result> <exception-mapping exception="java.lang.nullpointerexception" result="nullpointer"/> </action> </package>
action
public class loginaction extends actionsupport { public string add() throws sqlexception { return "toadd"; } }
有异常往外抛即可。你也可以在方法里面抛,比如throw sqlexception。
我们可以使用struts2的标签输出异常信息:
输出异常的message属性信息:<s:property value="exception.message" />
输出异常堆栈信息:<s:property value="exceptionstack" />。
有了处理系统异常的基础,我们来看一看自定义异常:
package com.exception ; public class myexception extends exception { private string message; public myexception(string message) { super(message); this.message = message ; } public string getmessage() { return message; } public void setmessage(string message) { this.message = message; } } public string execute() throws exception { if(!"hello".equals(usename) || !"world".equals(password)) { throw new myexception("用户名或密码错误,您发现了吧!"); } return "success" ; }
在action配置中的异常处理
<struts> <package name="struts2" extends="struts-default"> <action name="login" class="com.struts2.loginaction"> <exception-mapping result="myex" exception="com.exception.myexception"> </exception-mapping> <result name="myex">/error.jsp</result> <result name="success">/result.jsp</result> </action> </package> </struts>
在全局配置中的异常处理
<struts> <package name="struts2" extends="struts-default"> <global-results> <result name="myexception1">/error.jsp</result> </global-results> <global-exception-mappings> <exception-mapping result="myexception1" exception="com.exception.myexception"> </exception-mapping> </global-exception-mappings> <action name="login" class="com.struts2.loginaction"> <result name="success">/result.jsp</result> </action> </package> </struts>
错误页面error.jsp
<%@ page language="java" import="java.util.*" pageencoding="utf-8"%> <%@ taglib prefix="s" uri="/struts-tags"%> <html> <body> <!-- 这个exception 是 exception="com.exception.myexception" --> <s:property value="exception.message"/> </body> </html>
总结
局部异常处理比全局异常处理高,并且可覆盖全局异常处理,如果定义了全局异常映射,那么会对所有的action生效,反之定义了局部异常映射则会对当前action生效,
如果在全局区域和局部区域定义了相同的异常映射,首先去局部异常区域找result结果页面,如果找到了,则直接跳转到错误结果页面,不管全局有没有相同的结果,都被局部所覆盖,如果在局部区域没找到,则去全局区域找。