spring_three

Posted leccoo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring_three相关的知识,希望对你有一定的参考价值。


转账案例

坐标:

  1. <dependencies>
  2. <dependency>
  3. <groupId>org.springframework</groupId>
  4. <artifactId>spring-context</artifactId>
  5. <version>5.0.2.RELEASE</version>
  6. </dependency>
  7. <dependency>
  8. <groupId>org.springframework</groupId>
  9. <artifactId>spring-test</artifactId>
  10. <version>5.0.2.RELEASE</version>
  11. </dependency>
  12. <dependency>
  13. <groupId>commons-dbutils</groupId>
  14. <artifactId>commons-dbutils</artifactId>
  15. <version>1.4</version>
  16. </dependency>
  17. <dependency>
  18. <groupId>mysql</groupId>
  19. <artifactId>mysql-connector-java</artifactId>
  20. <version>5.1.6</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>c3p0</groupId>
  24. <artifactId>c3p0</artifactId>
  25. <version>0.9.1.2</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>junit</groupId>
  29. <artifactId>junit</artifactId>
  30. <version>4.12</version>
  31. </dependency>
  32. </dependencies>

创建实体类daomain

  1. /**
  2. * 账户的实体类
  3. */
  4. public class Account implements Serializable
  5. private Integer id;
  6. private String name;
  7. private Float money;

创建接口AccountDao.java

  1. /**
  2. * 账户的持久层接口
  3. */
  4. public interface AccountDao
  5. /**
  6. * 查询所有
  7. * @return
  8. */
  9. List<Account> findAllAccount();
  10. /**
  11. * 查询一个
  12. * @return
  13. */
  14. Account findAccountById(Integer accountId);
  15. /**
  16. * 保存
  17. * @param account
  18. */
  19. void saveAccount(Account account);
  20. /**
  21. * 更新
  22. * @param account
  23. */
  24. void updateAccount(Account account);
  25. /**
  26. * 删除
  27. * @param acccountId
  28. */
  29. void deleteAccount(Integer acccountId);
  30. /**
  31. * 根据名称查询账户
  32. * @param accountName
  33. * @return 如果有唯一的一个结果就返回,如果没有结果就返回null
  34. * 如果结果集超过一个就抛异常
  35. */
  36. Account findAccountByName(String accountName);

创建实现类AccountDaoImpl.java

  1. /**
  2. * 账户的持久层实现类
  3. */
  4. public class AccountDaoImpl implements AccountDao
  5. private QueryRunner runner;
  6. public List<Account> findAllAccount()
  7. try
  8. return runner.query("select * from account",new BeanListHandler<Account>(Account.class));
  9. catch (Exception e)
  10. throw new RuntimeException(e);
  11. public Account findAccountById(Integer accountId)
  12. try
  13. return runner.query("select * from account where id = ? ",new BeanHandler<Account>(Account.class),accountId);
  14. catch (Exception e)
  15. throw new RuntimeException(e);
  16. public void saveAccount(Account account)
  17. try
  18. runner.update("insert into account(name,money)values(?,?)",account.getName(),account.getMoney());
  19. catch (Exception e)
  20. throw new RuntimeException(e);
  21. public void updateAccount(Account account)
  22. try
  23. runner.update("update account set name=?,money=? where id=?",account.getName(),account.getMoney(),account.getId());
  24. catch (Exception e)
  25. throw new RuntimeException(e);
  26. public void deleteAccount(Integer accountId)
  27. try
  28. runner.update("delete from account where id=?",accountId);
  29. catch (Exception e)
  30. throw new RuntimeException(e);
  31. public Account findAccountByName(String accountName)
  32. try
  33. List<Account> accounts = runner.query("select * from account where name = ? ",new BeanListHandler<Account>(Account.class),accountName);
  34. if(accounts == null || accounts.size() == 0)
  35. return null;
  36. if(accounts.size() > 1)
  37. throw new RuntimeException("结果集不唯一,数据有问题");
  38. return accounts.get(0);
  39. catch (Exception e)
  40. throw new RuntimeException(e);

建接口AccountService.java

  1. /**
  2. * 账户的业务层接口
  3. */
  4. public interface AccountService
  5. /**
  6. * 查询所有
  7. * @return
  8. */
  9. List<Account> findAllAccount();
  10. /**
  11. * 查询一个
  12. * @return
  13. */
  14. Account findAccountById(Integer accountId);
  15. /**
  16. * 保存
  17. * @param account
  18. */
  19. void saveAccount(Account account);
  20. /**
  21. * 更新
  22. * @param account
  23. */
  24. void updateAccount(Account account);
  25. /**
  26. * 删除
  27. * @param acccountId
  28. */
  29. void deleteAccount(Integer acccountId);
  30. /**
  31. * 转账
  32. * @param sourceName 转出账户名称
  33. * @param targetName 转入账户名称
  34. * @param money 转账金额
  35. */
  36. void transfer(String sourceName, String targetName, Float money);

创建接口的实现类,AccountServiceImpl.java

  1. /**
  2. * 账户的业务层实现类
  3. *
  4. * 事务控制应该都是在业务层
  5. */
  6. public class AccountServiceImpl implements AccountService
  7. private AccountDao accountDao;
  8. public void setAccountDao(AccountDao accountDao)
  9. this.accountDao = accountDao;
  10. public List<Account> findAllAccount()
  11. return accountDao.findAllAccount();
  12. public Account findAccountById(Integer accountId)
  13. return accountDao.findAccountById(accountId);
  14. public void saveAccount(Account account)
  15. accountDao.saveAccount(account);
  16. public void updateAccount(Account account)
  17. accountDao.updateAccount(account);
  18. public void deleteAccount(Integer acccountId)
  19. accountDao.deleteAccount(acccountId);
  20. public void transfer(String sourceName, String targetName, Float money)
  21. System.out.println("transfer....");
  22. //2.1根据名称查询转出账户
  23. Account source = accountDao.findAccountByName(sourceName);
  24. //2.2根据名称查询转入账户
  25. Account target = accountDao.findAccountByName(targetName);
  26. //2.3转出账户减钱
  27. source.setMoney(source.getMoney()-money);
  28. //2.4转入账户加钱
  29. target.setMoney(target.getMoney()+money);
  30. //2.5更新转出账户
  31. accountDao.updateAccount(source);
  32. int i=1/0;
  33. //2.6更新转入账户
  34. accountDao.updateAccount(target);

配置applicationContext.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans
  5. http://www.springframework.org/schema/beans/spring-beans.xsd">
  6. <!-- 配置Service -->
  7. <bean id="accountService" class="com.it.service.impl.AccountServiceImpl">
  8. <!-- 注入dao -->
  9. <property name="accountDao" ref="accountDao"></property>
  10. </bean>
  11. <!--配置Dao对象-->
  12. <bean id="accountDao" class="com.it.dao.impl.AccountDaoImpl">
  13. <!-- 注入QueryRunner -->
  14. <property name="runner" ref="runner"></property>
  15. </bean>
  16. <!--配置QueryRunner-->
  17. <bean id="runner" class="org.apache.commons.dbutils.QueryRunner" scope="prototype">
  18. <constructor-arg name="ds" ref="dataSource"></constructor-arg>
  19. </bean>
  20. <!-- 配置数据源 -->
  21. <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
  22. <!--连接数据库的必备信息-->
  23. <property name="driverClass" value="com.mysql.jdbc.Driver"></property>
  24. <property name="jdbcUrl" value="jdbc:mysql://localhost:3306/itcastspring"></property>
  25. <property name="user" value="root"></property>
  26. <property name="password" value="root"></property>
  27. </bean>
  28. </beans>

测试AccountServiceTest.java

  1. /**
  2. * 使用Junit单元测试:测试我们的配置
  3. */
  4. @RunWith(SpringJUnit4ClassRunner.class)
  5. @ContextConfiguration(locations = "classpath:applicationContext.xml")
  6. public class AccountServiceTest
  7. @Autowired
  8. private AccountService as;
  9. @Test
  10. public void testTransfer()
  11. as.transfer("aaa","bbb",100f);

事务被自动控制了。换言之,我们使用了connection对象的setAutoCommit(true)


添加事务

技术图片

如果在AccountServiceImpl.java中的transfer方法中,抛出一个异常。此时事务不会回滚,原因是DBUtils每个操作数据都是获取一个连接,每个连接的事务都是独立的,且默认是自动提交。

解决方案:

需要使用ThreadLocal对象把Connection和当前线程绑定,从而使一个线程中只能有一个能控制事务的连接对象。

ConnectionUtils.java

  1. /**
  2. * 连接的工具类,它用于从数据源中获取一个连接,并且实现和线程的绑定
  3. */
  4. public class ConnectionUtils
  5. private ThreadLocal<Connection> tl = new ThreadLocal<Connection>();
  6. //注入数据源
  7. private DataSource dataSource;
  8. public void setDataSource(DataSource dataSource)
  9. this.dataSource = dataSource;
  10. /**
  11. * 获取当前线程上的连接,
  12. * @return
  13. */
  14. public Connection getThreadConnection()
  15. try
  16. //1.先从ThreadLocal上获取
  17. Connection conn = tl.get();
  18. //2.判断当前线程上是否有连接
  19. if (conn == null)
  20. //3.从数据源中获取一个连接,并且存入ThreadLocal中
  21. conn = dataSource.getConnection();
  22. tl.set(conn);
  23. //4.返回当前线程上的连接
  24. return conn;
  25. catch (Exception e)
  26. throw new RuntimeException(e);
  27. /**
  28. * 把连接和线程解绑(在当前线程结束的时候执行)
  29. */
  30. public void removeConnection()
  31. tl.remove();

TransactionManager.java

和事务管理相关的工具类,它包含了,开启事务,提交事务,回滚事务和释放连接

  1. /**
  2. * 和事务管理相关的工具类,它包含了,开启事务,提交事务,回滚事务和释放连接
  3. */
  4. public class TransactionManager
  5. private ConnectionUtils connectionUtils;
  6. public void setConnectionUtils(ConnectionUtils connectionUtils)
  7. this.connectionUtils = connectionUtils;
  8. /**
  9. * 开启事务
  10. */
  11. public void beginTransaction()
  12. try
  13. connectionUtils.getThreadConnection().setAutoCommit(false);
  14. catch (Exception e)
  15. e.printStackTrace();
  16. /**
  17. * 提交事务
  18. */
  19. public void commit()
  20. try
  21. connectionUtils.getThreadConnection().commit();
  22. catch (Exception e)
  23. e.printStackTrace();
  24. /**
  25. * 回滚事务
  26. */
  27. public void rollback()
  28. try
  29. connectionUtils.getThreadConnection().rollback();
  30. catch (Exception e)
  31. e.printStackTrace();
  32. /**
  33. * 释放连接
  34. */
  35. public void release()
  36. try
  37. connectionUtils.getThreadConnection().close();//把连接还回连接池中
  38. connectionUtils.removeConnection();//线程和连接解绑
  39. catch (Exception e)
  40. e.printStackTrace();

配置AccountDaoImpl.java

注入连接工具对象,使得操作数据库从同一个连接中获取

  1. /**
  2. * 账户的持久层实现类
  3. */
  4. public class AccountDaoImpl implements AccountDao
  5. private QueryRunner runner;
  6. private ConnectionUtils connectionUtils;
  7. public void setConnectionUtils(ConnectionUtils connectionUtils)
  8. this.connectionUtils = connectionUtils;
  9. public void setRunner(QueryRunner runner)
  10. this.runner = runner;
  11. public List<Account> findAllAccount()
  12. try
  13. return runner.query(connectionUtils.getThreadConnection(),"select * from account",new BeanListHandler<Account>(Account.class));
  14. catch (Exception e)
  15. throw new RuntimeException(e);
  16. public Account findAccountById(Integer accountId)
  17. try
  18. return runner.query(connectionUtils.getThreadConnection(),"select * from account where id = ? ",new BeanHandler<Account>(Account.class),accountId);
  19. catch (Exception e)
  20. throw new RuntimeException(e);
  21. public void saveAccount(Account account)
  22. try
  23. runner.update(connectionUtils.getThreadConnection(),"insert into account(name,money)values(?,?)",account.getName(),account.getMoney());
  24. catch (Exception e)
  25. throw new RuntimeException(e);
  26. public void updateAccount(Account account)
  27. try
  28. runner.update(connectionUtils.getThreadConnection(),"update account set name=?,money=? where id=?",account.getName(),account.getMoney(),account.getId());
  29. catch (Exception e)
  30. throw new RuntimeException(e);
  31. public void deleteAccount(Integer accountId)
  32. try
  33. runner.update(connectionUtils.getThreadConnection(),"delete from account where id=?",accountId);
  34. catch (Exception e)
  35. throw new RuntimeException(e);
  36. public Account findAccountByName(String accountName)
  37. try
  38. List<Account> accounts = runner.query(connectionUtils.getThreadConnection(),"select * from account where name = ? ",new BeanListHandler<Account>(Account.class),accountName);
  39. if(accounts == null || accounts.size() == 0)
  40. return null;
  41. if(accounts.size() > 1)
  42. throw new RuntimeException("结果集不唯一,数据有问题");
  43. return accounts.get(0);
  44. catch (Exception e)
  45. throw new RuntimeException(e);

配置AccountServiceImpl.java

事务操作一定需要在Service层控制。

作用:注入事务管理器对象,对每个操作都需要开启事务、提交事务、关闭事务,如果抛出异常,需要回滚事务。

  1. /**
  2. * 账户的业务层实现类
  3. *
  4. * 事务控制应该都是在业务层
  5. */
  6. public class AccountServiceImpl implements AccountService
  7. private AccountDao accountDao;
  8. private TransactionManager txManager;
  9. public void setTxManager(TransactionManager txManager)
  10. this.txManager = txManager;
  11. public void setAccountDao(AccountDao accountDao)
  12. this.accountDao = accountDao;
  13. public List<Account> findAllAccount()
  14. try
  15. //1.开启事务
  16. txManager.beginTransaction();
  17. //2.执行操作
  18. List<Account> accounts = accountDao.findAllAccount();
  19. //3.提交事务
  20. txManager.commit();
  21. //4.返回结果
  22. return accounts;
  23. catch (Exception e)
  24. //5.回滚操作
  25. txManager.rollback();
  26. throw new RuntimeException(e);
  27. finally
  28. //6.释放连接
  29. txManager.release();
  30. public Account findAccountById(Integer accountId)
  31. try
  32. //1.开启事务
  33. txManager.beginTransaction();
  34. //2.执行操作
  35. Account account = accountDao.findAccountById(accountId);
  36. //3.提交事务
  37. txManager.commit();
  38. //4.返回结果
  39. return account;
  40. catch (Exception e)
  41. //5.回滚操作
  42. txManager.rollback();
  43. throw new RuntimeException(e);
  44. finally
  45. //6.释放连接
  46. txManager.release();
  47. public void saveAccount(Account account)
  48. try
  49. //1.开启事务
  50. txManager.beginTransaction();
  51. //2.执行操作
  52. accountDao.saveAccount(account);
  53. //3.提交事务
  54. txManager.commit();
  55. catch (Exception e)
  56. //4.回滚操作
  57. txManager.rollback();
  58. finally
  59. //5.释放连接
  60. txManager.release();
  61. public void updateAccount(Account account)
  62. try
  63. //1.开启事务
  64. txManager.beginTransaction();
  65. //2.执行操作
  66. accountDao.updateAccount(account);
  67. //3.提交事务
  68. txManager.commit();
  69. catch (Exception e)
  70. //4.回滚操作
  71. txManager.rollback();
  72. finally
  73. //5.释放连接
  74. txManager.release();
  75. public void deleteAccount(Integer acccountId)
  76. try
  77. //1.开启事务
  78. txManager.beginTransaction();
  79. //2.执行操作
  80. accountDao.deleteAccount(acccountId);
  81. //3.提交事务
  82. txManager.commit();
  83. catch (Exception e)
  84. //4.回滚操作
  85. txManager.rollback();
  86. finally
  87. //5.释放连接
  88. txManager.release();
  89. public void transfer(String sourceName, String targetName, Float money)
  90. try
  91. //1.开启事务
  92. txManager.beginTransaction();
  93. //2.执行操作
  94. //2.1根据名称查询转出账户
  95. Account source = accountDao.findAccountByName(sourceName);
  96. //2.2根据名称查询转入账户
  97. Account target = accountDao.findAccountByName(targetName);
  98. //2.3转出账户减钱
  99. source.setMoney(source.getMoney()-money);
  100. //2.4转入账户加钱
  101. target.setMoney(target.getMoney()+money);
  102. //2.5更新转出账户
  103. accountDao.updateAccount(source);
  104. int i=1/0;
  105. //2.6更新转入账户
  106. accountDao.updateAccount(target);
  107. //3.提交事务
  108. txManager.commit();
  109. catch (Exception e)
  110. //4.回滚操作
  111. txManager.rollback();
  112. e.printStackTrace();
  113. finally
  114. //5.释放连接
  115. txManager.release();

配置applicationContext.xml

  1. <!-- 配置Service -->
  2. <bean id="accountService" class="com.it.service.impl.AccountServiceImpl">
  3. <!-- 注入dao -->
  4. <property name="accountDao" ref="accountDao"></property>
  5. <!--注入事务管理器-->
  6. <property name="txManager" ref="txManager"></property>
  7. </bean>
  8. <!--配置Dao对象-->
  9. <bean id="accountDao" class="com.it.dao.impl.AccountDaoImpl">
  10. <!-- 注入QueryRunner -->
  11. <property name="runner" ref="runner"></property>
  12. <!-- 注入ConnectionUtils -->
  13. <property name="connectionUtils" ref="connectionUtils"></property>
  14. </bean>
  15. <!--配置QueryRunner-->
  16. <bean id="runner" class="org.apache.commons.dbutils.QueryRunner" scope="prototype">
  17. <!--这里要去掉queryRunner的默认连接池配置,由ConnectionUtils 获取连接-->
  18. <!--<constructor-arg name="ds" ref="dataSource"></constructor-arg>-->
  19. </bean>
  20. <!-- 配置数据源 -->
  21. <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
  22. <!--连接数据库的必备信息-->
  23. <property name="driverClass" value="com.mysql.jdbc.Driver"></property>
  24. <property name="jdbcUrl" value="jdbc:mysql://localhost:3306/itcastspring"></property>
  25. <property name="user" value="root"></property>
  26. <property name="password" value="root"></property>
  27. </bean>
  28. <!-- 配置Connection的工具类 ConnectionUtils -->
  29. <bean id="connectionUtils" class="com.it.utils.ConnectionUtils">
  30. <!-- 注入数据源-->
  31. <property name="dataSource" ref="dataSource"></property>
  32. </bean>
  33. <!-- 配置事务管理器-->
  34. <bean id="txManager" class="com.it.utils.TransactionManager">
  35. <!-- 注入ConnectionUtils -->
  36. <property name="connectionUtils" ref="connectionUtils"></property>
  37. </bean>

通过对业务层改造,已经可以实现事务控制了,但是由于我们添加了事务控制,也产生了一个新的问题: 
业务层方法变得臃肿了,里面充斥着很多重复代码。并且业务层方法和事务控制方法耦合了。 
试想一下,如果我们此时提交,回滚,释放资源中任何一个方法名变更,都需要修改业务层的代码,况且这还只是一个业务层实现类,而实际的项目中这种业务层实现类可能有十几个甚至几十个。

【思考】: 
这个问题能不能解决呢? 
答案是肯定的,使用下一小节中提到的技术


AOP

AOP的概述

技术图片

AOP (Aspect Oriented Programing) 称为:面向切面编程,它是一种编程思想。 
AOP采取横向抽取机制,取代了传统纵向继承体系重复性代码的编写方式(应用场景:例如性能监视、事务管理、安全检查、缓存、日志记录等)。

【扩展了解】AOP 是 OOP(面向对象编程(Object Oriented Programming,OOP,面向对象程序设计)是一种计算机编程架构),思想延续 !

技术图片


AOP的作用

  • ?权限校验
  • ?日志记录
  • ?性能检测
  • ?缓存技术
  • ?事务管理

AOP底层实现

代理机制。

2个:spring的aop的底层原理

1:JDK代理(要求目标对象面向接口)(spring默认的代理方式是JDK代理)

2:CGLIB代理(面向接口、面向类)


AOP相关术语

Joinpoint(连接点): (方法)

所谓连接点是指那些被拦截到的点。在spring中,这些点指的是方法,因为spring只支持方法类型的连接点。

Pointcut(切入点): (方法)

所谓切入点是指我们要对哪些Joinpoint进行拦截的定义。

Advice(通知/增强): (方法)

所谓通知是指拦截到Joinpoint之后所要做的事情就是通知。 
通知的类型:前置通知,后置通知,异常通知,最终通知,环绕通知。

Aspect(切面): (类)

是切入点和通知(引介)的结合。

  • Target(目标对象): 代理的目标对象。
  • Weaving(织入): (了解)是指把增强应用到目标对象来创建新的代理对象的过程。 
    spring采用动态代理织入,而AspectJ采用编译期织入和类装载期织入。
  • Proxy(代理): 一个类被AOP织入增强后,就产生一个结果代理类。

技术图片


Spring的AOP配置(添加日志)

坐标xml

  1. <dependencies>
  2. <dependency>
  3. <groupId>org.springframework</groupId>
  4. <artifactId>spring-context</artifactId>
  5. <version>5.0.2.RELEASE</version>
  6. </dependency>
  7. <dependency>
  8. <groupId>org.springframework</groupId>
  9. <artifactId>spring-test</artifactId>
  10. <version>5.0.2.RELEASE</version>
  11. </dependency>
  12. <dependency>
  13. <groupId>junit</groupId>
  14. <artifactId>junit</artifactId>
  15. <version>4.12</version>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.aspectj</groupId>
  19. <artifactId>aspectjweaver</artifactId>
  20. <version>1.8.7</version>
  21. </dependency>

定义Service的接口和实现类,创建接口AccountService.java

  1. **
  2. * 账户的业务层接口
  3. */
  4. public interface AccountService
  5. /**
  6. * 模拟保存账户
  7. */
  8. void saveAccount();
  9. /**
  10. * 模拟更新账户
  11. * @param i
  12. */
  13. void updateAccount(int i);
  14. /**
  15. * 删除账户
  16. * @return
  17. */
  18. int deleteAccount();

创建接口的实现类AccountServiceImpl.java

  1. **
  2. * 账户的业务层实现类
  3. */
  4. public class AccountServiceImpl implements AccountService
  5. public void saveAccount()
  6. System.out.println("执行了保存");
  7. public void updateAccount(int i)
  8. System.out.println("执行了更新"+i);
  9. public int deleteAccount()
  10. System.out.println("执行了删除");
  11. return 0;

创建增强类Logger.java

  1. /**
  2. * 用于记录日志的工具类,它里面提供了公共的代码
  3. */
  4. public class Logger
  5. /**
  6. * 用于打印日志:计划让其在切入点方法执行之前执行(切入点方法就是业务层方法)
  7. */
  8. public void printLog()
  9. System.out.println("Logger类中的pringLog方法开始记录日志了。。。");

配置applicationContext.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:aop="http://www.springframework.org/schema/aop"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans
  6. http://www.springframework.org/schema/beans/spring-beans.xsd
  7. http://www.springframework.org/schema/aop
  8. http://www.springframework.org/schema/aop/spring-aop.xsd">
  9. <!-- 配置srping的Ioc,把service对象配置进来-->
  10. <bean id="accountService" class="com.it.service.impl.AccountServiceImpl"></bean>
  11. <!--spring中基于XML的AOP配置步骤
  12. 1、把通知Bean也交给spring来管理
  13. 2、使用aop:config标签表明开始AOP的配置
  14. 3、使用aop:aspect标签表明配置切面
  15. id属性:是给切面提供一个唯一标识
  16. ref属性:是指定通知类bean的Id。
  17. 4、在aop:aspect标签的内部使用对应标签来配置通知的类型
  18. 我们现在示例是让printLog方法在切入点方法执行之前执行:所以是前置通知
  19. aop:before:表示配置前置通知
  20. method属性:用于指定Logger类中哪个方法是前置通知
  21. pointcut属性:用于指定切入点表达式,该表达式的含义指的是对业务层中哪些方法增强
  22. 切入点表达式的写法:
  23. 关键字:execution(表达式)
  24. -->
  25. <!-- 配置Logger类,声明切面(创建对象,不是真正aop的切面) -->
  26. <bean id="logger" class="com.it.utils.Logger"></bean>
  27. <!--配置AOP-->
  28. <aop:config>
  29. <!--配置切面 -->
  30. <aop:aspect id="logAdvice" ref="logger">
  31. <!-- 配置通知的类型,并且建立通知方法和切入点方法的关联-->
  32. <aop:before method="printLog" pointcut="execution(void com.it.service.impl.AccountServiceImpl.saveAccount())"></aop:before>
  33. <aop:before method="printLog" pointcut="execution(void com.it.service.impl.AccountServiceImpl.updateAccount(int))"></aop:before>
  34. <aop:before method="printLog" pointcut="execution(int com.it.service.impl.AccountServiceImpl.deleteAccount())"></aop:before>
  35. </aop:aspect>
  36. </aop:config>
  37. </beans>

技术图片

测试

  1. /**
  2. * 测试AOP的配置
  3. */
  4. @RunWith(value = SpringJUnit4ClassRunner.class)
  5. @ContextConfiguration(locations = "classpath:applicationContext.xml")
  6. public class AOPTest
  7. @Autowired
  8. private AccountService as;
  9. @Test
  10. public void proxy()
  11. //3.执行方法
  12. as.saveAccount();
  13. as.updateAccount(1);
  14. as.deleteAccount();

切入点表达式的写法(重点)

  1. 切入点表达式的写法
  2. 关键字:execution(表达式)
  3. 表达式:
  4. 参数一:访问修饰符(非必填)
  5. 参数二:返回值(必填)
  6. 参数三:包名.类名(非必填)
  7. 参数四:方法名(参数)(必填)
  8. 参数五:异常(非必填)
  9. 访问修饰符 返回值 包名.包名.包名...类名.方法名(参数列表)
  10. 标准的表达式写法:
  11. public void com.it.service.impl.AccountServiceImpl.saveAccount()
  12. 访问修饰符可以省略
  13. void com.it.service.impl.AccountServiceImpl.saveAccount()
  14. 返回值可以使用通配符(*:表示任意),表示任意返回值
  15. * com.it.service.impl.AccountServiceImpl.saveAccount()
  16. 包名可以使用通配符,表示任意包。但是有几级包,就需要写几个*.
  17. * *.*.*.*.AccountServiceImpl.saveAccount())
  18. 包名可以使用..表示当前包及其子包
  19. * *..AccountServiceImpl.saveAccount()
  20. 类名和方法名都可以使用*来实现通配(一般情况下,不会这样配置)
  21. * *..*.*() == * *()
  22. 参数列表:
  23. 可以直接写数据类型:
  24. 基本类型直接写名称 int
  25. 引用类型写包名.类名的方式 java.lang.String
  26. 可以使用通配符表示任意类型,但是必须有参数
  27. 可以使用..表示有无参数均可,有参数可以是任意类型
  28. 全通配写法:* *..*.*(..)
  29. 实际开发中切入点表达式的通常写法:切到业务层实现类下的所有方法:* com.it.service..*.*(..)

最终

  1. <aop:before method="printLog" pointcut="execution(* com.it.service..*.*(..))">
  2. </aop:before>

Spring AOP的五种通知类型(使用XML)

  • 前置通知
  • 后置通知
  • 异常通知
  • 最终通知
  • 环绕通知

技术图片

坐标xml

  1. <dependencies>
  2. <dependency>
  3. <groupId>org.springframework</groupId>
  4. <artifactId>spring-context</artifactId>
  5. <version>5.0.2.RELEASE</version>
  6. </dependency>
  7. <dependency>
  8. <groupId>org.springframework</groupId>
  9. <artifactId>spring-test</artifactId>
  10. <version>5.0.2.RELEASE</version>
  11. </dependency>
  12. <dependency>
  13. <groupId>junit</groupId>
  14. <artifactId>junit</artifactId>
  15. <version>4.12</version>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.aspectj</groupId>
  19. <artifactId>aspectjweaver</artifactId>
  20. <version>1.8.7</version>
  21. </dependency>
  22. </dependencies>

创建接口AccountService.java

  1. /**
  2. * 账户的业务层接口
  3. */
  4. public interface AccountService
  5. /**
  6. * 模拟保存账户
  7. */
  8. void saveAccount();
  9. /**
  10. * 模拟更新账户
  11. * @param i
  12. */
  13. void updateAccount(int i);
  14. /**
  15. * 删除账户
  16. * @return
  17. */
  18. int deleteAccount();

创建接口的实现类AccountServiceImpl.java

  1. /**
  2. * 账户的业务层实现类
  3. */
  4. public class AccountServiceImpl implements AccountService
  5. public void saveAccount()
  6. System.out.println("执行了保存");
  7. public void updateAccount(int i)
  8. System.out.println("执行了更新"+i);
  9. public int deleteAccount()
  10. System.out.println("执行了删除");
  11. return 0;

创建增强类Logger.java

  1. /**
  2. * 用于记录日志的工具类,它里面提供了公共的代码
  3. */
  4. public class Logger
  5. /**
  6. * 前置通知
  7. */
  8. public void beforePrintLog(JoinPoint jp)
  9. System.out.println("前置通知Logger类中的beforePrintLog方法开始记录日志了。。。");
  10. /**
  11. * 后置通知
  12. */
  13. public void afterReturningPrintLog(JoinPoint jp)
  14. System.out.println("后置通知Logger类中的afterReturningPrintLog方法开始记录日志了。。。");
  15. /**
  16. * 异常通知
  17. */
  18. public void afterThrowingPrintLog(JoinPoint jp)
  19. System.out.println("异常通知Logger类中的afterThrowingPrintLog方法开始记录日志了。。。");
  20. /**
  21. * 最终通知
  22. */
  23. public void afterPrintLog(JoinPoint jp)
  24. System.out.println("最终通知Logger类中的afterPrintLog方法开始记录日志了。。。");
  25. /**
  26. * 环绕通知
  27. * 问题:
  28. * 当我们配置了环绕通知之后,切入点方法没有执行,而通知方法执行了。
  29. * 分析:
  30. * 通过对比动态代理中的环绕通知代码,发现动态代理的环绕通知有明确的切入点方法调用,而我们的代码中没有。
  31. * 解决:
  32. * Spring框架为我们提供了一个接口:ProceedingJoinPoint。该接口有一个方法proceed(),此方法就相当于明确调用切入点方法。
  33. * 该接口可以作为环绕通知的方法参数,在程序执行时,spring框架会为我们提供该接口的实现类供我们使用。
  34. *
  35. * spring中的环绕通知:
  36. * 它是spring框架为我们提供的一种可以在代码中手动控制增强方法何时执行的方式。
  37. */
  38. public Object aroundPringLog(ProceedingJoinPoint pjp)
  39. Object rtValue = null;
  40. try
  41. Object[] args = pjp.getArgs();//得到方法执行所需的参数
  42. System.out.println("Logger类中的aroundPringLog方法开始记录日志了。。。前置");
  43. rtValue = pjp.proceed(args);//明确调用业务层方法(切入点方法)
  44. System.out.println("Logger类中的aroundPringLog方法开始记录日志了。。。后置");
  45. return rtValue;
  46. catch (Throwable t)
  47. System.out.println("Logger类中的aroundPringLog方法开始记录日志了。。。异常");
  48. throw new RuntimeException(t);
  49. finally
  50. System.out.println("Logger类中的aroundPringLog方法开始记录日志了。。。最终");

配置applicationContext.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:aop="http://www.springframework.org/schema/aop"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans
  6. http://www.springframework.org/schema/beans/spring-beans.xsd
  7. http://www.springframework.org/schema/aop
  8. http://www.springframework.org/schema/aop/spring-aop.xsd">
  9. <!-- 配置srping的Ioc,把service对象配置进来-->
  10. <bean id="accountService" class="com.it.service.impl.AccountServiceImpl"></bean>
  11. <!-- 配置Logger类 -->
  12. <bean id="logger" class="com.it.utils.Logger"></bean>
  13. <!--配置AOP-->
  14. <aop:config>
  15. <!-- 配置切入点表达式 id属性用于指定表达式的唯一标识。expression属性用于指定表达式内容
  16. 此标签写在aop:aspect标签内部只能当前切面使用。
  17. 它还可以写在aop:aspect外面,此时就变成了所有切面可用
  18. -->
  19. <aop:pointcut id="pt1" expression="execution(* com.it.service..*.*(..))"></aop:pointcut>
  20. <!--配置切面 -->
  21. <aop:aspect id="logAdvice" ref="logger">
  22. <!-- 配置前置通知:在切入点方法执行之前执行
  23. <aop:before method="beforePrintLog" pointcut-ref="pt1" ></aop:before>-->
  24. <!-- 配置后置通知:在切入点方法正常执行之后值。它和异常通知永远只能执行一个
  25. <aop:after-returning method="afterReturningPrintLog" pointcut-ref="pt1"></aop:after-returning>-->
  26. <!-- 配置异常通知:在切入点方法执行产生异常之后执行。它和后置通知永远只能执行一个
  27. <aop:after-throwing method="afterThrowingPrintLog" pointcut-ref="pt1"></aop:after-throwing>-->
  28. <!-- 配置最终通知:无论切入点方法是否正常执行它都会在其后面执行
  29. <aop:after method="afterPrintLog" pointcut-ref="pt1"></aop:after>-->
  30. <!-- 配置环绕通知 详细的注释请看Logger类中-->
  31. <aop:around method="aroundPringLog" pointcut-ref="pt1"></aop:around>
  32. </aop:aspect>
  33. </aop:config>
  34. </beans>

测试

  1. /**
  2. * 测试AOP的配置
  3. */
  4. @RunWith(value = SpringJUnit4ClassRunner.class)
  5. @ContextConfiguration(locations = "classpath:applicationContext.xml")
  6. public class AOPTest
  7. @Autowired
  8. private AccountService as;
  9. @Test
  10. public void proxy()
  11. //3.执行方法
  12. as.saveAccount();

Spring AOP的注解方式配置五种通知类型

坐标xml

  1. <dependencies>
  2. <dependency>
  3. <groupId>org.springframework</groupId>
  4. <artifactId>spring-context</artifactId>
  5. <version>5.0.2.RELEASE</version>
  6. </dependency>
  7. <dependency>
  8. <groupId>org.springframework</groupId>
  9. <artifactId>spring-test</artifactId>
  10. <version>5.0.2.RELEASE</version>
  11. </dependency>
  12. <dependency>
  13. <groupId>junit</groupId>
  14. <artifactId>junit</artifactId>
  15. <version>4.12</version>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.aspectj</groupId>
  19. <artifactId>aspectjweaver</artifactId>
  20. <version>1.8.7</version>
  21. </dependency>
  22. </dependencies>

创建接口AccountService.java

  1. /**
  2. * 账户的业务层接口
  3. */
  4. public interface AccountService
  5. /**
  6. * 模拟保存账户
  7. */
  8. void saveAccount();
  9. /**
  10. * 模拟更新账户
  11. * @param i
  12. */
  13. void updateAccount(int i);
  14. /**
  15. * 删除账户
  16. * @return
  17. */
  18. int deleteAccount();

创建接口的实现类AccountServiceImpl.java

  1. /**
  2. * 账户的业务层实现类
  3. */
  4. @Service("accountService")
  5. public class AccountServiceImpl implements AccountService
  6. public void saveAccount()
  7. System.out.println("执行了保存");
  8. //int i=1/0;
  9. public void updateAccount(int i)
  10. System.out.println("执行了更新"+i);
  11. public int deleteAccount()
  12. System.out.println("执行了删除");
  13. return 0;

创建增强类Logger.java

  1. /**
  2. * 用于记录日志的工具类,它里面提供了公共的代码
  3. */
  4. @Component("logger")
  5. @Aspect//表示当前类是一个切面类
  6. public class Logger
  7. @Pointcut("execution(* com.it.service..*.*(..))")
  8. private void pt1()
  9. /**
  10. * 前置通知
  11. */
  12. // @Before("pt1()")
  13. public void beforePrintLog(JoinPoint jp)
  14. System.out.println("前置通知Logger类中的beforePrintLog方法开始记录日志了。。。");
  15. /**
  16. * 后置通知
  17. */
  18. // @AfterReturning("pt1()")
  19. public void afterReturningPrintLog(JoinPoint jp)
  20. System.out.println("后置通知Logger类中的afterReturningPrintLog方法开始记录日志了。。。");
  21. /**
  22. * 异常通知
  23. */
  24. // @AfterThrowing("pt1()")
  25. public void afterThrowingPrintLog(JoinPoint jp)
  26. System.out.println("异常通知Logger类中的afterThrowingPrintLog方法开始记录日志了。。。");
  27. /**
  28. * 最终通知
  29. */
  30. // @After("pt1()")
  31. public void afterPrintLog(JoinPoint jp)
  32. System.out.println("最终通知Logger类中的afterPrintLog方法开始记录日志了。。。");
  33. /**
  34. * 环绕通知
  35. * 问题:
  36. * 当我们配置了环绕通知之后,切入点方法没有执行,而通知方法执行了。
  37. * 分析:
  38. * 通过对比动态代理中的环绕通知代码,发现动态代理的环绕通知有明确的切入点方法调用,而我们的代码中没有。
  39. * 解决:
  40. * Spring框架为我们提供了一个接口:ProceedingJoinPoint。该接口有一个方法proceed(),此方法就相当于明确调用切入点方法。
  41. * 该接口可以作为环绕通知的方法参数,在程序执行时,spring框架会为我们提供该接口的实现类供我们使用。
  42. *
  43. * spring中的环绕通知:
  44. * 它是spring框架为我们提供的一种可以在代码中手动控制增强方法何时执行的方式。
  45. */
  46. @Around("pt1()")
  47. public Object aroundPringLog(ProceedingJoinPoint pjp)
  48. Object rtValue = null;
  49. try
  50. Object[] args = pjp.getArgs();//得到方法执行所需的参数
  51. System.out.println("Logger类中的aroundPringLog方法开始记录日志了。。。前置");
  52. rtValue = pjp.proceed(args);//明确调用业务层方法(切入点方法)
  53. System.out.println("Logger类中的aroundPringLog方法开始记录日志了。。。后置");
  54. return rtValue;
  55. catch (Throwable t)
  56. System.out.println("Logger类中的aroundPringLog方法开始记录日志了。。。异常");
  57. throw new RuntimeException(t);
  58. finally
  59. System.out.println("Logger类中的aroundPringLog方法开始记录日志了。。。最终");

配置applicationContext.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:aop="http://www.springframework.org/schema/aop"
  5. xmlns:context="http://www.springframework.org/schema/context"
  6. xsi:schemaLocation="http://www.springframework.org/schema/beans
  7. http://www.springframework.org/schema/beans/spring-beans.xsd
  8. http://www.springframework.org/schema/aop
  9. http://www.springframework.org/schema/aop/spring-aop.xsd
  10. http://www.springframework.org/schema/context
  11. http://www.springframework.org/schema/context/spring-context.xsd">
  12. <!-- 配置spring创建容器时要扫描的包-->
  13. <context:component-scan base-package="com.it"></context:component-scan>
  14. <!-- 配置spring开启注解AOP的支持 -->
  15. <aop:aspectj-autoproxy></aop:aspectj-autoproxy>
  16. </beans>

测试

  1. /**
  2. * 测试AOP的配置
  3. */
  4. @RunWith(value = SpringJUnit4ClassRunner.class)
  5. @ContextConfiguration(locations = "classpath:applicationContext.xml")
  6. public class AOPTest
  7. @Autowired
  8. private AccountService as;
  9. @Test
  10. public void proxy()
  11. //3.执行方法
  12. as.saveAccount();

发现问题:注解开发spring的aop,默认是:最终通知放置到了后置通知/异常通知的前面。要想实现最终通知放置到后置通知/异常通知的后面,怎么办?

解决方案:只能使用环绕通知

技术图片


完全使用注解

创建类SpringConfiguration.java

  1. @Configuration
  2. @ComponentScan(basePackages="com.it")
  3. @EnableAspectJAutoProxy
  4. public class SpringConfiguration

测试类,AOPAnnoTest.java

  1. /**
  2. * 测试AOP的配置
  3. */
  4. @RunWith(value = SpringJUnit4ClassRunner.class)
  5. @ContextConfiguration(classes = SpringConfiguration.class)
  6. public class AOPAnnoTest
  7. @Autowired
  8. private AccountService as;
  9. @Test
  10. public void proxy()
  11. //3.执行方法
  12. as.saveAccount();

以上是关于spring_three的主要内容,如果未能解决你的问题,请参考以下文章