`
chenlh
  • 浏览: 39557 次
  • 性别: Icon_minigender_1
  • 来自: 福建
文章分类
社区版块
存档分类
最新评论

Struts2异常机制

阅读更多

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

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

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

 

1.先搭建一个Struts框架

2.包结构如下:

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>  
  • 大小: 7.8 KB
分享到:
评论

相关推荐

    基于Springboot的实验报告系统源码数据库文档.zip

    基于Springboot的实验报告系统源码数据库文档.zip

    ERA5_Climate_Single_Month.txt

    GEE训练教程——Landsat5、8和Sentinel-2、DEM和各2哦想指数下载

    基于springboot智能健康饮食系统源码数据库文档.zip

    基于springboot智能健康饮食系统源码数据库文档.zip

    基于SpringBoot的校园服务系统源码数据库文档.zip

    基于SpringBoot的校园服务系统源码数据库文档.zip

    史上最全IXIA测试仪配置使用指导手册(含IxNetwork,图文并茂超详细!).zip

    内容概要: IXIA测试仪的基本配置.doc ixia测试仪基础使用示例.doc IxNetwork如何进行抓包回放-V1.0.pdf IxNetwork如何自定义报文-V2.0.pdf ixia构造ip分片方法.txt IxNetwork使用简介.pdf 适用人群:网络协议造包、打流相关的测试工程技术人员,想要学习的同学可以下载哈 使用场景:构造pcap包,打流 Ixia简介 IXIA使用的是Server-client模式,Server端在测试仪表的主机上,在开机后会随着主机内的操作系统的启动而自动启动,一般情况下不需要人为的手工启动。因此在通常不需要为主机配置专用的显示器和键盘。 client端包括两个测试软件: Ixia Explorer和ScriptMate。这两个软件一般安装在测试用计算机上,在仪表自带的主机中也有这两个软件。根据测试项目的不同来选择使用不同的软件。Ixia Explorer主要提供数据流的测试,针对设备的功能进行测试; ScriptMate提供各种性能测试窗口,针对设备的性能进行测试。 Auto:自动分配;

    基于Python+Django花卉商城系统源码数据库文档.zip

    基于Python+Django花卉商城系统源码数据库文档.zip

    Umi-OCR-main.zip

    Umi-OCR-main.zip

    微信小程序源码-促销抽奖.zip

    基于微信小程序开发的促销抽奖小工具源码,适用于初学者了解小程序开发过程以及简单抽奖工具的实现。

    Sen2_median.txt

    GEE训练教程——Landsat5、8和Sentinel-2、DEM和各2哦想指数下载

    springboot的概要介绍与分析

    以下是一个关于Spring Boot设计的资源描述及项目源码的简要概述: Spring Boot设计资源描述 Spring Boot是一个为基于Spring的应用提供快速开发工具的框架,其设计旨在简化Spring应用的初始搭建和开发过程。以下是一些关键资源: Spring Boot官方文档:详细阐述了Spring Boot的核心特性、自动配置原理、起步依赖、内嵌式服务器等关键概念。这是学习和掌握Spring Boot设计的首选资源。 在线教程与视频:各大在线教育平台提供了丰富的Spring Boot教程和视频课程,从基础入门到高级应用,帮助开发者全面了解和掌握Spring Boot设计。 书籍与电子资料:许多技术书籍和在线电子资料深入讲解了Spring Boot的设计原理、最佳实践和项目案例,为开发者提供了宝贵的学习资源。 项目源码示例 以下是一个简单的Spring Boot项目源码示例,用于演示Spring Boot的基本结构和自动配置功能: java // 引入Spring Boot依赖 @SpringBootApplication public class MySpri

    基于springboot美妆领域管理系统源码数据库文档.zip

    基于springboot美妆领域管理系统源码数据库文档.zip

    tables-3.7.0+gpl-cp37-cp37m-win_amd64.whl

    tables-3.7.0+gpl-cp37-cp37m-win_amd64.whl

    算法实现的概要介绍与分析

    算法是计算机科学的核心,它们在解决各种问题时发挥着关键作用。一个好的算法不仅可以提高程序的效率,还可以简化复杂的问题。下面我将通过一个具体的例子——快速排序算法(Quick Sort)——来展示算法的实现过程,包括资源描述和项目源码。 ### 快速排序算法简介 快速排序是一种高效的排序算法,采用分治法的思想。其基本步骤如下: 1. 从数列中挑出一个元素,称为“基准”(pivot)。 2. 重新排序数列,所有比基准值小的元素放到基准前面,所有比基准值大的元素放到基准后面(相同的数可以到任一边)。在这个分割结束之后,该基准就处于数列的中间位置。这个称为分割(partition)操作。 3. 递归地(recursive)把小于基准值的子数列和大于基准值的子数列排序。 ### 资源描述 快速排序算法因其高效性和简洁性,在实际应用中非常受欢迎。它的时间复杂度平均为 O(n log n),最坏情况下为 O(n^2),但这种情况很少发生。快速排序的空间复杂度为 O(log n),因为它使用了递归来实现。 快速排序的一个典型应用场景是在数据库系统中对大量数据进行排序。由于它的高效性,快速排序

    基于springboot农场投入品运营线上管理系统源码数据库文档.zip

    基于springboot农场投入品运营线上管理系统源码数据库文档.zip

    基于springboot个性化影院推荐系统源码数据库文档.zip

    基于springboot个性化影院推荐系统源码数据库文档.zip

    linux基础进阶笔记

    linux基础进阶笔记,配套视频:https://www.bilibili.com/list/474327672?sid=4493093&spm_id_from=333.999.0.0&desc=1

    微信自动抢红包动态库.zip程序资源学习资料参考

    小程序 微信自动抢红包动态库.zip程序资源学习资料参考

    iOS版微信抢红包插件(支持后台抢红包).zip

    小程序 iOS版微信抢红包插件(支持后台抢红包).zip

    经典-FPGA时序约束教程

    经典-FPGA时序约束教程

    基于springboot的智慧点餐系统源码数据库文档.zip

    基于springboot的智慧点餐系统源码数据库文档.zip

Global site tag (gtag.js) - Google Analytics