码迷,mamicode.com
首页 > 其他好文 > 详细

Struts2的声明式异常处理

时间:2014-08-09 18:08:58      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   数据   问题   cti   div   

1、例如SSH中在数据库连接失败时进行增删查改,会出现org.springframework.transaction.CannotCreateTransactionException的问题

(1)、在可能出现错误的方法throws 

    public Session getSession() throws CannotCreateTransactionException {
        return sessionFactory.getCurrentSession();
    }

(2)、struts.xml

        <global-results>
            <result name="sqlexception">/sqlexception.jsp</result>
        </global-results>
        <global-exception-mappings>
            <exception-mapping result="sqlexception"
exception="org.springframework.transaction.CannotCreateTransactionException"></exception-mapping>
        </global-exception-mappings>

如果出现这个exception,回转到/sqlexception.jsp。

Done

Struts2的声明式异常处理,布布扣,bubuko.com

Struts2的声明式异常处理

标签:style   blog   color   io   数据   问题   cti   div   

原文地址:http://www.cnblogs.com/xingyyy/p/3901185.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!