系統的異常處理機制是衡量一個系統設計的關鍵因素,良好的異常處理機制能在系統出現異常時準確的找到問題的所在。 html
spring aop對異常的處理有良好的支持。spring 提供了一個接口 ThrowsAdvice,該接口裏面沒有任何方法,可是實現類裏面必須的實現 java
afterThrowing(Method method, Object[] args, Object target, RuntimeException throwable) 或者 spring
afterThrowing(RuntimeException throwable) 數據庫
若是須要記錄發生異常方法的詳細信息,則實現第一個方法就行,若是隻記錄發生的異常,實現第二個方法就ok! this
那麼異常的處理應該在什麼位置來作處理呢? spa
通常咱們的系統都應該有如下幾個層次:Action--->Service---->DAO .net
DAO負責直接和數據庫打交道,也是發生異常頻率較高的地方,而service只是調用DAO所提供給外面的接口,action裏面大部分的操做也是調用service的服務,再加上少數其餘的邏輯,這部分的異常能夠單獨處理!下面咱們主要關心DAO層的異常處理。 設計
一、定義接口 代理
- package com.beckham.dao;
- import java.util.List;
- import com.beckham.model.User;
- /**
- * @author Owner
- * Jan 19, 2010 10:15:32 PM
- *
- * struts2
- * com.beckham.dao
- * UserDAO.java
- */
- public interface UserDAO {
- public boolean userExsit(String username) throws Exception;
- public User findById(int id) throws Exception;
- public List<User> queryUser(String hql,int beginIndex) throws Exception;
- public void saveUser(User user) throws Exception;
- public int gettotalSize(String hql) throws Exception ;
- }
二、實現 htm
- package com.beckham.daoimp;
- import java.util.List;
- import com.beckham.dao.SuperDAO;
- import com.beckham.dao.UserDAO;
- import com.beckham.model.User;
- import com.beckham.util.PropertyUtil;
- /**
- * @author Owner
- * Jan 19, 2010 10:15:50 PM
- *
- * struts2
- * com.beckham.daoimp
- * UserDAOImp.java
- */
- public class UserDAOImp extends SuperDAO implements UserDAO {
- public User findById(int id) throws Exception {
- User user = null;
- try {
- user = (User) this.getHibernateTemplate().get(User.class, id);
- } catch (Exception e) {
- e.printStackTrace();
- throw new Exception("主鍵查詢用戶失敗", e);
- }
- return user;
- }
- public void saveUser(User user) throws Exception {
- try {
- this.getHibernateTemplate().save(user);
- } catch (Exception e) {
- e.printStackTrace();
- throw new Exception("增長用戶失敗", e);
- }
- }
- @SuppressWarnings("unchecked")
- public List<User> queryUser(String hql, int beginIndex) throws Exception {
- try {
- return (List<User>) this.getHibernateTemplate().getSessionFactory()
- .getCurrentSession().createQuery(hql).setFirstResult(
- beginIndex).setMaxResults(
- PropertyUtil.getPageSize()).list();
- } catch (Exception e) {
- e.printStackTrace();
- throw new Exception("查詢用戶出現異常", e);
- }
- }
- public boolean userExsit(String username) throws Exception {
- boolean bl = true;
- String hql = "from User where username='" + username + "'";
- if (queryUser(hql, 0).size() == 0) {
- bl = false;
- }
- return bl;
- }
- public int gettotalSize(String hql) throws Exception {
- int totalsize = 0;
- try {
- totalsize = Integer.parseInt(this.getHibernateTemplate().find(hql)
- .get(0).toString());
- } catch (Exception e) {
- e.printStackTrace();
- throw new Exception("查詢用戶總數失敗", e);
- }
- return totalsize;
- }
- }
這裏須要說明的是,這裏的異常我沒有細緻的分類,都是throws Exception。
service層的代碼就省略了,由於只是調用DAO層的方法,下面來寫異常的攔截
- package com.beckham.aop;
- import java.lang.reflect.Method;
- import org.springframework.aop.ThrowsAdvice;
- /**
- * @author Owner Jan 18, 2010 2:37:10 PM 處理DAO層的異常 struts2 com.beckham.aop
- * ExceptionLog.java
- */
- public class ExceptionLog implements ThrowsAdvice {
- /**
- * Owner
- * 參數解釋 Method method 執行的方法
- * Object[] args 方法參數
- * Object target 代理的目標對象
- * Throwable throwable 產生的異常
- * Jan 18, 2010 3:21:46 PM
- */
- public void afterThrowing(Method method, Object[] args, Object target,
- RuntimeException throwable) {
- System.out.println("產生異常的方法名稱: " + method.getName());
-
- for(Object o:args){
- System.out.println("方法的參數: " + o.toString());
- }
-
- System.out.println("代理對象: " + target.getClass().getName());
- System.out.println("拋出的異常: " + throwable.getMessage()+">>>>>>>"
- + throwable.getCause());
- System.out.println("異常詳細信息: "+throwable.fillInStackTrace());
- }
- }
最後固然就是在配置文件裏面配置了
- <bean id="log" class="com.beckham.aop.LogAdvice"></bean>
- <bean id="exceptionLog" class="com.beckham.aop.ExceptionLog"></bean>
- <!-- beanName自動代理 -->
- <bean id="logAdvice"
- class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">
- <property name="beanNames">
- <list>
- <value>userDAO</value>
- </list>
- </property>
- <property name="interceptorNames">
- <list>
- <value>log</value>
- <value>exceptionLog</value>
- </list>
- </property>
- </bean>
到此,經過spring AOP攔截異常就完成了,這裏只是攔截DAO層的異常,此方法的好處就是處理異常和功能實現徹底分離開,只須要在寫方法的時候要記得拋出相應的異常,當出現異常時ThrowsAdvice就會攔截到該異常,並獲取該異常的詳細信息。