Struts2异常机制

昨天,按Struts2的权威指南,做了一个Sturts2异常处理例子

本人是初学者,流程是理解了,不过如果用到具体项目中,还不知道要什么用

相信在这里有很多有经验的前辈,不吝赐教

 

1.先搭建一个Struts框架

2.包结构如下:
Struts2异常机制

Myexception代码 复制代码
  1. package lee;   
  2.   
  3. public class MyException extends Exception   
  4. {   
  5.     public MyException()   
  6.     {   
  7.     }   
  8.     public MyException(String msg)   
  9.     {   
  10.         super(msg);   
  11.     }   
  12. }  
package lee;

public class MyException extends Exception
{
	public MyException()
	{
	}
	public MyException(String msg)
	{
		super(msg);
	}
}

 

Loginaction代码 复制代码
  1. package lee;   
  2.   
  3. import com.opensymphony.xwork2.Action;   
  4.   
  5.   
  6. public class LoginAction implements Action   
  7. {   
  8.   
  9.     private String username;   
  10.     private String password;   
  11.     private String tip;   
  12.   
  13.        
  14.     public void setUsername(String username) {   
  15.         this.username = username;    
  16.     }   
  17.   
  18.     public void setPassword(String password) {   
  19.         this.password = password;    
  20.     }   
  21.   
  22.     public void setTip(String tip)   
  23.     {   
  24.         this.tip = tip;   
  25.     }   
  26.   
  27.     public String getUsername() {   
  28.         return (this.username);    
  29.     }   
  30.   
  31.     public String getPassword() {   
  32.         return (this.password);    
  33.     }   
  34.     public String getTip()   
  35.     {   
  36.         return tip;   
  37.     }   
  38.   
  39.     public String execute() throws Exception   
  40.     {   
  41.         if (getUsername().equalsIgnoreCase("user"))   
  42.         {   
  43.             throw new MyException("自定义异常");   
  44.         }   
  45.         if (getUsername().equalsIgnoreCase("sql"))   
  46.         {   
  47.             throw new java.sql.SQLException("用户名不能为SQL");   
  48.         }   
  49.         if (getUsername().equals("scott")   
  50.                 && getPassword().equals("tiger") )   
  51.         {   
  52.             setTip("哈哈,服务器提示!");   
  53.             return SUCCESS;   
  54.         }   
  55.         else   
  56.         {   
  57.             return ERROR;   
  58.         }   
  59.     }   
  60. }  
package lee;

import com.opensymphony.xwork2.Action;


public class LoginAction implements Action
{

	private String username;
	private String password;
	private String tip;

	
	public void setUsername(String username) {
		this.username = username; 
	}

	public void setPassword(String password) {
		this.password = password; 
	}

	public void setTip(String tip)
	{
		this.tip = tip;
	}

	public String getUsername() {
		return (this.username); 
	}

	public String getPassword() {
		return (this.password); 
	}
	public String getTip()
	{
		return tip;
	}

    public String execute() throws Exception
	{
		if (getUsername().equalsIgnoreCase("user"))
		{
			throw new MyException("自定义异常");
		}
		if (getUsername().equalsIgnoreCase("sql"))
		{
			throw new java.sql.SQLException("用户名不能为SQL");
		}
        if (getUsername().equals("scott")
                && getPassword().equals("tiger") )
		{
			setTip("哈哈,服务器提示!");
            return SUCCESS;
        }
		else
		{
            return ERROR;
        }
    }
}

 
 

 

 

 

Struts.xml代码 复制代码
  1. <?xml version="1.0" encoding="UTF-8"?>   
  2. <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd" >   
  3. <struts>   
  4.     <package name="mypackage" extends="struts-default">   
  5.         <!-- 此处定义所有的全局结果 -->   
  6.         <global-results>   
  7.             <result name="sql">/exception.jsp</result>   
  8.             <result name="root">/exception.jsp</result>   
  9.         </global-results>   
  10.         <!-- 此处定义全局异常映射 -->   
  11.         <global-exception-mappings>   
  12.             <!-- Action抛出SQLException异常时,转入名为sql的结果 -->   
  13.             <exception-mapping result="sql"  
  14.                 exception="java.sql.SQLException">   
  15.             </exception-mapping>   
  16.             <exception-mapping result="root"  
  17.                 exception="java.lang.Exception">   
  18.             </exception-mapping>   
  19.         </global-exception-mappings>   
  20.         <action name="login" class="lee.LoginAction">   
  21.             <!-- 下面配置一个局部异常映射,当Action抛出lee.MyException时,转入名为my的结果 -->   
  22.             <exception-mapping result="my"  
  23.                 exception="lee.MyException">   
  24.             </exception-mapping>   
  25.             <!-- 下面定义结果 -->   
  26.             <result name="my">/exception.jsp</result>   
  27.             <result name="success">/welcome.jsp</result>   
  28.             <result name="error">/error.jsp</result>   
  29.         </action>   
  30.     </package>   
  31. </struts>  
<?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>
	<package name="mypackage" extends="struts-default">
		<!-- 此处定义所有的全局结果 -->
		<global-results>
			<result name="sql">/exception.jsp</result>
			<result name="root">/exception.jsp</result>
		</global-results>
		<!-- 此处定义全局异常映射 -->
		<global-exception-mappings>
			<!-- Action抛出SQLException异常时,转入名为sql的结果 -->
			<exception-mapping result="sql"
				exception="java.sql.SQLException">
			</exception-mapping>
			<exception-mapping result="root"
				exception="java.lang.Exception">
			</exception-mapping>
		</global-exception-mappings>
		<action name="login" class="lee.LoginAction">
			<!-- 下面配置一个局部异常映射,当Action抛出lee.MyException时,转入名为my的结果 -->
			<exception-mapping result="my"
				exception="lee.MyException">
			</exception-mapping>
			<!-- 下面定义结果 -->
			<result name="my">/exception.jsp</result>
			<result name="success">/welcome.jsp</result>
			<result name="error">/error.jsp</result>
		</action>
	</package>
</struts>

 

Login.jsp代码 复制代码
  1. <%@ page language="java" contentType="text/html; charset=GBK"%>   
  2. <html>   
  3. <head>   
  4. <title>登录页面</title>   
  5. </head>   
  6. <body>   
  7. <form action="login.action" method="post">   
  8.     <table align="center">   
  9.     <caption><h3>用户登录</h3></caption>   
  10.         <tr>   
  11.             <td>用户名:<input type="text" name="username"/></td>   
  12.         </tr>   
  13.         <tr>   
  14.             <td>密&nbsp;&nbsp;码:<input type="text" name="password"/></td>   
  15.         </tr>   
  16.         <tr align="center">   
  17.             <td><input type="submit" value="登录"/><input type="reset" value="重填" /></td>   
  18.         </tr>   
  19.     </table>   
  20. </form>   
  21. </body>   
  22. </html>  
<%@ page language="java" contentType="text/html; charset=GBK"%>
<html>
<head>
<title>登录页面</title>
</head>
<body>
<form action="login.action" method="post">
    <table align="center">
    <caption><h3>用户登录</h3></caption>
        <tr>
            <td>用户名:<input type="text" name="username"/></td>
        </tr>
        <tr>
            <td>密&nbsp;&nbsp;码:<input type="text" name="password"/></td>
        </tr>
        <tr align="center">
            <td><input type="submit" value="登录"/><input type="reset" value="重填" /></td>
        </tr>
    </table>
</form>
</body>
</html>

 

Welcome.jsp代码 复制代码
  1. <%@ page language="java" contentType="text/html; charset=GBK"%>   
  2. <%@taglib prefix="s" uri="/struts-tags"%>   
  3. <html>   
  4.     <head>   
  5.         <title>成功页面</title>   
  6.     </head>   
  7.     <body>   
  8.         您已经登录!   
  9.         <s:property value="tip"/>   
  10.     </body>   
  11. </html>  
<%@ page language="java" contentType="text/html; charset=GBK"%>
<%@taglib prefix="s" uri="/struts-tags"%>
<html>
    <head>
        <title>成功页面</title>
    </head>
    <body>
        您已经登录!
		<s:property value="tip"/>
    </body>
</html>

 

Exception.jsp代码 复制代码
  1. <%@ page language="java" contentType="text/html; charset=GBK"%>   
  2. <%@taglib prefix="s" uri="/struts-tags"%>   
  3. <html>   
  4.     <head>   
  5.         <title>异常处理页面</title>   
  6.     </head>   
  7.     <body>   
  8.         <s:property value="exceptionStack"/>   
  9.     </body>   
  10. </html>  
<%@ page language="java" contentType="text/html; charset=GBK"%>
<%@taglib prefix="s" uri="/struts-tags"%>
<html>
    <head>
        <title>异常处理页面</title>
    </head>
    <body>
        <s:property value="exceptionStack"/>
    </body>
</html>

 

Error代码 复制代码
  1. <%@ page language="java" contentType="text/html; charset=GBK"%>   
  2. <html>   
  3.     <head>   
  4.         <title>错误页面</title>   
  5.     </head>   
  6.     <body>   
  7.         您不能登录!   
  8.     </body>   
  9. </html>  

你可能感兴趣的:(apache,html,sql,jsp,struts)