spring AOP的异常拦截

系统的异常处理机制是衡量一个系统设计的关键因素,良好的异常处理机制能在系统出现异常时准确的找到问题的所在。

spring aop对异常的处理有良好的支持。spring 提供了一个接口 ThrowsAdvice,该接口里面没有任何方法,但是实现类里面必须的实现

afterThrowing(Method method, Object[] args, Object target, RuntimeException throwable) 或者

afterThrowing(RuntimeException throwable)

如果需要记录发生异常方法的详细信息,则实现第一个方法就行,如果只记录发生的异常,实现第二个方法就ok!

那么异常的处理应该在什么位置来做处理呢?

一般我们的系统都应该有以下几个层次:Action--->Service---->DAO

DAO负责直接和数据库打交道,也是发生异常频率较高的地方,而service只是调用DAO所提供给外面的接口,action里面大部分的操作也是调用service的服务,再加上少数其他的逻辑,这部分的异常可以单独处理!下面我们主要关心DAO层的异常处理。

1、定义接口

[java] view plain copy print ?
  1. package com.beckham.dao;
  2. import java.util.List;
  3. import com.beckham.model.User;

  4. public interface UserDAO {
  5. public boolean userExsit(String username) throws Exception;
  6. public User findById(int id) throws Exception;
  7. public List<User> queryUser(String hql,int beginIndex) throws Exception;
  8. public void saveUser(User user) throws Exception;
  9. public int gettotalSize(String hql) throws Exception ;
  10. }

2、实现

[java] view plain copy print ?
  1. package com.beckham.daoimp;
  2. import java.util.List;
  3. import com.beckham.dao.SuperDAO;
  4. import com.beckham.dao.UserDAO;
  5. import com.beckham.model.User;
  6. import com.beckham.util.PropertyUtil;

  7. public class UserDAOImp extends SuperDAO implements UserDAO {
  8. public User findById(int id) throws Exception {
  9. User user = null;
  10. try {
  11. user = (User) this.getHibernateTemplate().get(User.class, id);
  12. } catch (Exception e) {
  13. e.printStackTrace();
  14. throw new Exception("主键查询用户失败", e);
  15. }
  16. return user;
  17. }
  18. public void saveUser(User user) throws Exception {
  19. try {
  20. this.getHibernateTemplate().save(user);
  21. } catch (Exception e) {
  22. e.printStackTrace();
  23. throw new Exception("增加用户失败", e);
  24. }
  25. }
  26. @SuppressWarnings("unchecked")
  27. public List<User> queryUser(String hql, int beginIndex) throws Exception {
  28. try {
  29. return (List<User>) this.getHibernateTemplate().getSessionFactory()
  30. .getCurrentSession().createQuery(hql).setFirstResult(
  31. beginIndex).setMaxResults(
  32. PropertyUtil.getPageSize()).list();
  33. } catch (Exception e) {
  34. e.printStackTrace();
  35. throw new Exception("查询用户出现异常", e);
  36. }
  37. }
  38. public boolean userExsit(String username) throws Exception {
  39. boolean bl = true;
  40. String hql = "from User where username='" + username + "'";
  41. if (queryUser(hql, 0).size() == 0) {
  42. bl = false;
  43. }
  44. return bl;
  45. }
  46. public int gettotalSize(String hql) throws Exception {
  47. int totalsize = 0;
  48. try {
  49. totalsize = Integer.parseInt(this.getHibernateTemplate().find(hql)
  50. .get(0).toString());
  51. } catch (Exception e) {
  52. e.printStackTrace();
  53. throw new Exception("查询用户总数失败", e);
  54. }
  55. return totalsize;
  56. }
  57. }

这里需要说明的是,这里的异常我没有细致的分类,都是throws Exception。

service层的代码就省略了,因为只是调用DAO层的方法,下面来写异常的拦截

[java] view plain copy print ?
  1. package com.beckham.aop;
  2. import java.lang.reflect.Method;
  3. import org.springframework.aop.ThrowsAdvice;

  4. public class ExceptionLog implements ThrowsAdvice {

  5. public void afterThrowing(Method method, Object[] args, Object target,
  6. RuntimeException throwable) {
  7. System.out.println("产生异常的方法名称: " + method.getName());
  8. for(Object o:args){
  9. System.out.println("方法的参数: " + o.toString());
  10. }
  11. System.out.println("代理对象: " + target.getClass().getName());
  12. System.out.println("抛出的异常: " + throwable.getMessage()+">>>>>>>"
  13. + throwable.getCause());
  14. System.out.println("异常详细信息:   "+throwable.fillInStackTrace());
  15. }
  16. }

最后当然就是在配置文件里面配置了

[xhtml] view plain copy print ?
  1. <bean id="log" class="com.beckham.aop.LogAdvice"></bean>
  2. <bean id="exceptionLog" class="com.beckham.aop.ExceptionLog"></bean>
  3. <!-- beanName自动代理 -->
  4. <bean id="logAdvice"
  5. class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">
  6. <property name="beanNames">
  7. <list>
  8. <value>userDAO</value>
  9. </list>
  10. </property>
  11. <property name="interceptorNames">
  12. <list>
  13. <value>log</value>
  14. <value>exceptionLog</value>
  15. </list>
  16. </property>
  17. </bean>

到此,通过spring AOP拦截异常就完成了,这里只是拦截DAO层的异常,此方法的好处就是处理异常和功能实现完全分离开,只需要在写方法的时候要记得抛出相应的异常,当出现异常时ThrowsAdvice就会拦截到该异常,并获取该异常的详细信息。


你可能感兴趣的:(spring,AOP,exception,String,user,import)