spring_(16) Spring_前置通知
阿新 • • 發佈:2018-12-02
- AspectJ:Java社群裡最完整最流行的AOP框架。
- 在Spring2.0以上版本中,可以使用基於AspectJ註解或基於XML配置的AOP
在Spring中啟用AspectJ註解支援
- 要在Spring應用中使用AspectJ註解,必須在classpath下包含AspectrJ類庫:aopalliance.jar、aspectj.weaver.jar、和spring-aspects.jar
- 將aopSchema新增到< beans > 根元素中.
- 要在SpringIOC容器中啟用AspectJ註解支援,只要在Bean配置檔案中定義一個空的XML元素< aop:aspectj-autoproxy >
- 當Spring IOC容器偵測到Bean配置檔案中的< aop:aspectj-autoproxy >元素時,會自動為與AspectJ切面匹配的Bean建立代理。
用AspectJ註解宣告切面
-
要在Spring中宣告AspectJ切面,只需要在IOC容器中將切面宣告為Bean例項。當在SpringIOC容器中初始化AspectJ切面之後,SpringIOC容器中初始化AspectJ切面之後,SpringIOC容器就會為那些於AspectJ切面相匹配的Bean建立代理.
-
在AspectJ註解中,切面只是一個帶有@Aspect註解的Java類.
-
通知是標註有某種註解的簡單的java方法.
-
AspectJ支援5中型別的通知註解:
- @Before:前置通知,在方法執行之前執行
- @After:後置通知,在方法執行之後執行
- @AfterRunning:返回通知,在方法返回結果之後執行
- @AfterThrowing:異常通知,在方法丟擲異常之後
- @Around:環繞通知,圍繞著方法執行
前置通知
- 前置通知:在方法執行之前的通知
- 前置通知使用@Before註解,並將切入點表示式的值作為註解值
例子程式
基本結構
ArithmeticCalculator.java
package com.spring.aop.impl;
public interface ArithmeticCalculator {
int add(int i, int j);
int sub(int i, int j);
int mul(int i, int j);
int div(int i, int j);
}
ArithmeticCalculatorImpl.java
package com.spring.aop.impl;
import org.springframework.stereotype.Component;
@Component
public class ArithmeticCalculatorImpl implements ArithmeticCalculator {
@Override
public int add(int i, int j) {
int result = i+j;
return result;
}
@Override
public int sub(int i, int j) {
int result = i-j;
return result;
}
@Override
public int mul(int i, int j) {
int result = i*j;
return result;
}
@Override
public int div(int i, int j) {
int result = i/j;
return result;
}
}
LoggingAspect.java
package com.spring.aop.impl;
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.springframework.stereotype.Component;
import java.util.Arrays;
import java.util.List;
//把這個類宣告為一個切面:需要把該類放入到IOC容器中、再宣告為一個切面
@Aspect
@Component
public class LoggingAspect {
//宣告該方法是一個前置通知:在目標方法開始之前執行
@Before("execution(public int com.spring.aop.impl.ArithmeticCalculator.*(int ,int ))")
public void beforeMethod(JoinPoint joinPoint){
String methodName = joinPoint.getSignature().getName();
List<Object> args = Arrays.asList(joinPoint.getArgs());
System.out.println("The method "+methodName + " begins with " + args);
}
}
applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
<!--配置自動掃描的包-->
<context:component-scan base-package="com.spring.aop.impl"></context:component-scan>
<!--使AspjectJ 註解起作用: 自動為匹配的類生成代理物件-->
<aop:aspectj-autoproxy></aop:aspectj-autoproxy>
</beans>
Main.java
package com.spring.aop.impl;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class Main {
public static void main(String[] args){
//1.建立Spring的IOC容器
ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml");
//2.從IOC容器中獲取bean的例項
ArithmeticCalculator arithmeticCalculator = ctx.getBean(ArithmeticCalculator.class);
//3.使用bean
int result = arithmeticCalculator.add(3,6);
System.out.println("result:" + result);
result = arithmeticCalculator.div(12,6);
System.out.println("result:" + result);
}
}
note.txt
1.SpringAOP
1).加入jar包:
com.springsource.org.aspectj.weaver-1.6.8.RELEASE.jar
com.springsource.org.aopalliance-1.0.0.jar
spring-aop-4.0.0.RELEASE.jar
spring-aspects-4.0.0.RELEASE.jar
commons-logging-1.1.1.jar
spring-beans-4.0.0.RELEASE.jar
spring-context-4.0.0.RELEASE.jar
spring-core-4.0.0.RELEASE.jar
spring-expression-4.0.0.RELEASE.jar
2).在配置檔案中加入aop的名稱空間
3).基於註解的方式
1.在配置檔案中加入如下配置:
<aop:aspectj-aitoproxy> </aop:aspectj-aitoproxy>
2.把橫切關注點的程式碼抽象到切面的類中。
1))切面首先是一個IOC中的bean,即加入@Component註解
2))切面還需要加入@Aspect註解
3.在類中宣告各種通知:
1))宣告一個方法
2))在方法前加入@Before註解
4.可以在通知方法中宣告一個型別為JointPoint的引數。然後就能訪問連結細節。如方法名稱和引數值。