spring_three

不穿格子衫的徍爺發表於2019-07-01


轉賬案例

座標:

  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;
  8. }

建立介面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);
  37. }

建立實現類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. }
  12. }
  13. public Account findAccountById(Integer accountId) {
  14. try{
  15. return runner.query("select * from account where id = ? ",new BeanHandler<Account>(Account.class),accountId);
  16. }catch (Exception e) {
  17. throw new RuntimeException(e);
  18. }
  19. }
  20. public void saveAccount(Account account) {
  21. try{
  22. runner.update("insert into account(name,money)values(?,?)",account.getName(),account.getMoney());
  23. }catch (Exception e) {
  24. throw new RuntimeException(e);
  25. }
  26. }
  27. public void updateAccount(Account account) {
  28. try{
  29. runner.update("update account set name=?,money=? where id=?",account.getName(),account.getMoney(),account.getId());
  30. }catch (Exception e) {
  31. throw new RuntimeException(e);
  32. }
  33. }
  34. public void deleteAccount(Integer accountId) {
  35. try{
  36. runner.update("delete from account where id=?",accountId);
  37. }catch (Exception e) {
  38. throw new RuntimeException(e);
  39. }
  40. }
  41. public Account findAccountByName(String accountName) {
  42. try{
  43. List<Account> accounts = runner.query("select * from account where name = ? ",new BeanListHandler<Account>(Account.class),accountName);
  44. if(accounts == null || accounts.size() == 0){
  45. return null;
  46. }
  47. if(accounts.size() > 1){
  48. throw new RuntimeException("結果集不唯一,資料有問題");
  49. }
  50. return accounts.get(0);
  51. }catch (Exception e) {
  52. throw new RuntimeException(e);
  53. }
  54. }
  55. }

建介面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);
  37. }

建立介面的實現類,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. }
  11. public List<Account> findAllAccount() {
  12. return accountDao.findAllAccount();
  13. }
  14. public Account findAccountById(Integer accountId) {
  15. return accountDao.findAccountById(accountId);
  16. }
  17. public void saveAccount(Account account) {
  18. accountDao.saveAccount(account);
  19. }
  20. public void updateAccount(Account account) {
  21. accountDao.updateAccount(account);
  22. }
  23. public void deleteAccount(Integer acccountId) {
  24. accountDao.deleteAccount(acccountId);
  25. }
  26. public void transfer(String sourceName, String targetName, Float money) {
  27. System.out.println("transfer....");
  28. //2.1根據名稱查詢轉出賬戶
  29. Account source = accountDao.findAccountByName(sourceName);
  30. //2.2根據名稱查詢轉入賬戶
  31. Account target = accountDao.findAccountByName(targetName);
  32. //2.3轉出賬戶減錢
  33. source.setMoney(source.getMoney()-money);
  34. //2.4轉入賬戶加錢
  35. target.setMoney(target.getMoney()+money);
  36. //2.5更新轉出賬戶
  37. accountDao.updateAccount(source);
  38. int i=1/0;
  39. //2.6更新轉入賬戶
  40. accountDao.updateAccount(target);
  41. }
  42. }

配置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);
  12. }
  13. }

事務被自動控制了。換言之,我們使用了connection物件的setAutoCommit(true)


新增事務

1561994325830

如果在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. * 獲取當前執行緒上的連線,
  13. * @return
  14. */
  15. public Connection getThreadConnection() {
  16. try{
  17. //1.先從ThreadLocal上獲取
  18. Connection conn = tl.get();
  19. //2.判斷當前執行緒上是否有連線
  20. if (conn == null) {
  21. //3.從資料來源中獲取一個連線,並且存入ThreadLocal中
  22. conn = dataSource.getConnection();
  23. tl.set(conn);
  24. }
  25. //4.返回當前執行緒上的連線
  26. return conn;
  27. }catch (Exception e){
  28. throw new RuntimeException(e);
  29. }
  30. }
  31. /**
  32. * 把連線和執行緒解綁(在當前執行緒結束的時候執行)
  33. */
  34. public void removeConnection(){
  35. tl.remove();
  36. }
  37. }

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. */
  12. public void beginTransaction(){
  13. try {
  14. connectionUtils.getThreadConnection().setAutoCommit(false);
  15. }catch (Exception e){
  16. e.printStackTrace();
  17. }
  18. }
  19. /**
  20. * 提交事務
  21. */
  22. public void commit(){
  23. try {
  24. connectionUtils.getThreadConnection().commit();
  25. }catch (Exception e){
  26. e.printStackTrace();
  27. }
  28. }
  29. /**
  30. * 回滾事務
  31. */
  32. public void rollback(){
  33. try {
  34. connectionUtils.getThreadConnection().rollback();
  35. }catch (Exception e){
  36. e.printStackTrace();
  37. }
  38. }
  39. /**
  40. * 釋放連線
  41. */
  42. public void release(){
  43. try {
  44. connectionUtils.getThreadConnection().close();//把連線還回連線池中
  45. connectionUtils.removeConnection();//執行緒和連線解綁
  46. }catch (Exception e){
  47. e.printStackTrace();
  48. }
  49. }
  50. }

配置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. }
  10. public void setRunner(QueryRunner runner) {
  11. this.runner = runner;
  12. }
  13. public List<Account> findAllAccount() {
  14. try{
  15. return runner.query(connectionUtils.getThreadConnection(),"select * from account",new BeanListHandler<Account>(Account.class));
  16. }catch (Exception e) {
  17. throw new RuntimeException(e);
  18. }
  19. }
  20. public Account findAccountById(Integer accountId) {
  21. try{
  22. return runner.query(connectionUtils.getThreadConnection(),"select * from account where id = ? ",new BeanHandler<Account>(Account.class),accountId);
  23. }catch (Exception e) {
  24. throw new RuntimeException(e);
  25. }
  26. }
  27. public void saveAccount(Account account) {
  28. try{
  29. runner.update(connectionUtils.getThreadConnection(),"insert into account(name,money)values(?,?)",account.getName(),account.getMoney());
  30. }catch (Exception e) {
  31. throw new RuntimeException(e);
  32. }
  33. }
  34. public void updateAccount(Account account) {
  35. try{
  36. runner.update(connectionUtils.getThreadConnection(),"update account set name=?,money=? where id=?",account.getName(),account.getMoney(),account.getId());
  37. }catch (Exception e) {
  38. throw new RuntimeException(e);
  39. }
  40. }
  41. public void deleteAccount(Integer accountId) {
  42. try{
  43. runner.update(connectionUtils.getThreadConnection(),"delete from account where id=?",accountId);
  44. }catch (Exception e) {
  45. throw new RuntimeException(e);
  46. }
  47. }
  48. public Account findAccountByName(String accountName) {
  49. try{
  50. List<Account> accounts = runner.query(connectionUtils.getThreadConnection(),"select * from account where name = ? ",new BeanListHandler<Account>(Account.class),accountName);
  51. if(accounts == null || accounts.size() == 0){
  52. return null;
  53. }
  54. if(accounts.size() > 1){
  55. throw new RuntimeException("結果集不唯一,資料有問題");
  56. }
  57. return accounts.get(0);
  58. }catch (Exception e) {
  59. throw new RuntimeException(e);
  60. }
  61. }
  62. }

配置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. }
  12. public void setAccountDao(AccountDao accountDao) {
  13. this.accountDao = accountDao;
  14. }
  15. public List<Account> findAllAccount() {
  16. try {
  17. //1.開啟事務
  18. txManager.beginTransaction();
  19. //2.執行操作
  20. List<Account> accounts = accountDao.findAllAccount();
  21. //3.提交事務
  22. txManager.commit();
  23. //4.返回結果
  24. return accounts;
  25. }catch (Exception e){
  26. //5.回滾操作
  27. txManager.rollback();
  28. throw new RuntimeException(e);
  29. }finally {
  30. //6.釋放連線
  31. txManager.release();
  32. }
  33. }
  34. public Account findAccountById(Integer accountId) {
  35. try {
  36. //1.開啟事務
  37. txManager.beginTransaction();
  38. //2.執行操作
  39. Account account = accountDao.findAccountById(accountId);
  40. //3.提交事務
  41. txManager.commit();
  42. //4.返回結果
  43. return account;
  44. }catch (Exception e){
  45. //5.回滾操作
  46. txManager.rollback();
  47. throw new RuntimeException(e);
  48. }finally {
  49. //6.釋放連線
  50. txManager.release();
  51. }
  52. }
  53. public void saveAccount(Account account) {
  54. try {
  55. //1.開啟事務
  56. txManager.beginTransaction();
  57. //2.執行操作
  58. accountDao.saveAccount(account);
  59. //3.提交事務
  60. txManager.commit();
  61. }catch (Exception e){
  62. //4.回滾操作
  63. txManager.rollback();
  64. }finally {
  65. //5.釋放連線
  66. txManager.release();
  67. }
  68. }
  69. public void updateAccount(Account account) {
  70. try {
  71. //1.開啟事務
  72. txManager.beginTransaction();
  73. //2.執行操作
  74. accountDao.updateAccount(account);
  75. //3.提交事務
  76. txManager.commit();
  77. }catch (Exception e){
  78. //4.回滾操作
  79. txManager.rollback();
  80. }finally {
  81. //5.釋放連線
  82. txManager.release();
  83. }
  84. }
  85. public void deleteAccount(Integer acccountId) {
  86. try {
  87. //1.開啟事務
  88. txManager.beginTransaction();
  89. //2.執行操作
  90. accountDao.deleteAccount(acccountId);
  91. //3.提交事務
  92. txManager.commit();
  93. }catch (Exception e){
  94. //4.回滾操作
  95. txManager.rollback();
  96. }finally {
  97. //5.釋放連線
  98. txManager.release();
  99. }
  100. }
  101. public void transfer(String sourceName, String targetName, Float money) {
  102. try {
  103. //1.開啟事務
  104. txManager.beginTransaction();
  105. //2.執行操作
  106. //2.1根據名稱查詢轉出賬戶
  107. Account source = accountDao.findAccountByName(sourceName);
  108. //2.2根據名稱查詢轉入賬戶
  109. Account target = accountDao.findAccountByName(targetName);
  110. //2.3轉出賬戶減錢
  111. source.setMoney(source.getMoney()-money);
  112. //2.4轉入賬戶加錢
  113. target.setMoney(target.getMoney()+money);
  114. //2.5更新轉出賬戶
  115. accountDao.updateAccount(source);
  116. int i=1/0;
  117. //2.6更新轉入賬戶
  118. accountDao.updateAccount(target);
  119. //3.提交事務
  120. txManager.commit();
  121. }catch (Exception e){
  122. //4.回滾操作
  123. txManager.rollback();
  124. e.printStackTrace();
  125. }finally {
  126. //5.釋放連線
  127. txManager.release();
  128. }
  129. }
  130. }

配置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的概述

1561994683230

AOP (Aspect Oriented Programing) 稱為:面向切面程式設計,它是一種程式設計思想。 
AOP採取橫向抽取機制,取代了傳統縱向繼承體系重複性程式碼的編寫方式(應用場景:例如效能監視、事務管理、安全檢查、快取、日誌記錄等)。

【擴充套件瞭解】AOP 是 OOP(物件導向程式設計(Object Oriented Programming,OOP,物件導向程式設計)是一種計算機程式設計架構),思想延續 !

1561994739908


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織入增強後,就產生一個結果代理類。

1561995019185


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();
  19. }

建立介面的實現類AccountServiceImpl.java

  1. **
  2. * 賬戶的業務層實現類
  3. */
  4. public class AccountServiceImpl implements AccountService {
  5. public void saveAccount() {
  6. System.out.println("執行了儲存");
  7. }
  8. public void updateAccount(int i) {
  9. System.out.println("執行了更新"+i);
  10. }
  11. public int deleteAccount() {
  12. System.out.println("執行了刪除");
  13. return 0;
  14. }
  15. }

建立增強類Logger.java

  1. /**
  2. * 用於記錄日誌的工具類,它裡面提供了公共的程式碼
  3. */
  4. public class Logger {
  5. /**
  6. * 用於列印日誌:計劃讓其在切入點方法執行之前執行(切入點方法就是業務層方法)
  7. */
  8. public void printLog(){
  9. System.out.println("Logger類中的pringLog方法開始記錄日誌了。。。");
  10. }
  11. }

配置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>

1561995224189

測試

  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();
  15. }
  16. }

切入點表示式的寫法(重點)

  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)

  • 前置通知
  • 後置通知
  • 異常通知
  • 最終通知
  • 環繞通知

1561995468818

座標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();
  19. }

建立介面的實現類AccountServiceImpl.java

  1. /**
  2. * 賬戶的業務層實現類
  3. */
  4. public class AccountServiceImpl implements AccountService {
  5. public void saveAccount() {
  6. System.out.println("執行了儲存");
  7. }
  8. public void updateAccount(int i) {
  9. System.out.println("執行了更新"+i);
  10. }
  11. public int deleteAccount() {
  12. System.out.println("執行了刪除");
  13. return 0;
  14. }
  15. }

建立增強類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. */
  14. public void afterReturningPrintLog(JoinPoint jp){
  15. System.out.println("後置通知Logger類中的afterReturningPrintLog方法開始記錄日誌了。。。");
  16. }
  17. /**
  18. * 異常通知
  19. */
  20. public void afterThrowingPrintLog(JoinPoint jp){
  21. System.out.println("異常通知Logger類中的afterThrowingPrintLog方法開始記錄日誌了。。。");
  22. }
  23. /**
  24. * 最終通知
  25. */
  26. public void afterPrintLog(JoinPoint jp){
  27. System.out.println("最終通知Logger類中的afterPrintLog方法開始記錄日誌了。。。");
  28. }
  29. /**
  30. * 環繞通知
  31. * 問題:
  32. * 當我們配置了環繞通知之後,切入點方法沒有執行,而通知方法執行了。
  33. * 分析:
  34. * 通過對比動態代理中的環繞通知程式碼,發現動態代理的環繞通知有明確的切入點方法呼叫,而我們的程式碼中沒有。
  35. * 解決:
  36. * Spring框架為我們提供了一個介面:ProceedingJoinPoint。該介面有一個方法proceed(),此方法就相當於明確呼叫切入點方法。
  37. * 該介面可以作為環繞通知的方法引數,在程式執行時,spring框架會為我們提供該介面的實現類供我們使用。
  38. *
  39. * spring中的環繞通知:
  40. * 它是spring框架為我們提供的一種可以在程式碼中手動控制增強方法何時執行的方式。
  41. */
  42. public Object aroundPringLog(ProceedingJoinPoint pjp){
  43. Object rtValue = null;
  44. try{
  45. Object[] args = pjp.getArgs();//得到方法執行所需的引數
  46. System.out.println("Logger類中的aroundPringLog方法開始記錄日誌了。。。前置");
  47. rtValue = pjp.proceed(args);//明確呼叫業務層方法(切入點方法)
  48. System.out.println("Logger類中的aroundPringLog方法開始記錄日誌了。。。後置");
  49. return rtValue;
  50. }catch (Throwable t){
  51. System.out.println("Logger類中的aroundPringLog方法開始記錄日誌了。。。異常");
  52. throw new RuntimeException(t);
  53. }finally {
  54. System.out.println("Logger類中的aroundPringLog方法開始記錄日誌了。。。最終");
  55. }
  56. }
  57. }

配置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();
  13. }
  14. }

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();
  19. }

建立介面的實現類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. }
  10. public void updateAccount(int i) {
  11. System.out.println("執行了更新"+i);
  12. }
  13. public int deleteAccount() {
  14. System.out.println("執行了刪除");
  15. return 0;
  16. }
  17. }

建立增強類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. */
  19. // @AfterReturning("pt1()")
  20. public void afterReturningPrintLog(JoinPoint jp){
  21. System.out.println("後置通知Logger類中的afterReturningPrintLog方法開始記錄日誌了。。。");
  22. }
  23. /**
  24. * 異常通知
  25. */
  26. // @AfterThrowing("pt1()")
  27. public void afterThrowingPrintLog(JoinPoint jp){
  28. System.out.println("異常通知Logger類中的afterThrowingPrintLog方法開始記錄日誌了。。。");
  29. }
  30. /**
  31. * 最終通知
  32. */
  33. // @After("pt1()")
  34. public void afterPrintLog(JoinPoint jp){
  35. System.out.println("最終通知Logger類中的afterPrintLog方法開始記錄日誌了。。。");
  36. }
  37. /**
  38. * 環繞通知
  39. * 問題:
  40. * 當我們配置了環繞通知之後,切入點方法沒有執行,而通知方法執行了。
  41. * 分析:
  42. * 通過對比動態代理中的環繞通知程式碼,發現動態代理的環繞通知有明確的切入點方法呼叫,而我們的程式碼中沒有。
  43. * 解決:
  44. * Spring框架為我們提供了一個介面:ProceedingJoinPoint。該介面有一個方法proceed(),此方法就相當於明確呼叫切入點方法。
  45. * 該介面可以作為環繞通知的方法引數,在程式執行時,spring框架會為我們提供該介面的實現類供我們使用。
  46. *
  47. * spring中的環繞通知:
  48. * 它是spring框架為我們提供的一種可以在程式碼中手動控制增強方法何時執行的方式。
  49. */
  50. @Around("pt1()")
  51. public Object aroundPringLog(ProceedingJoinPoint pjp){
  52. Object rtValue = null;
  53. try{
  54. Object[] args = pjp.getArgs();//得到方法執行所需的引數
  55. System.out.println("Logger類中的aroundPringLog方法開始記錄日誌了。。。前置");
  56. rtValue = pjp.proceed(args);//明確呼叫業務層方法(切入點方法)
  57. System.out.println("Logger類中的aroundPringLog方法開始記錄日誌了。。。後置");
  58. return rtValue;
  59. }catch (Throwable t){
  60. System.out.println("Logger類中的aroundPringLog方法開始記錄日誌了。。。異常");
  61. throw new RuntimeException(t);
  62. }finally {
  63. System.out.println("Logger類中的aroundPringLog方法開始記錄日誌了。。。最終");
  64. }
  65. }
  66. }

配置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();
  13. }
  14. }

發現問題:註解開發spring的aop,預設是:最終通知放置到了後置通知/異常通知的前面。要想實現最終通知放置到後置通知/異常通知的後面,怎麼辦?

解決方案:只能使用環繞通知

1561995820024


完全使用註解

建立類SpringConfiguration.java

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

測試類,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();
  13. }
  14. }