AOP(Aspect Oriented Programming)意为:面向切面编程,通过预编译方式和运行期动态代理实现程序功能的统一维护的一种技术。AOP是OOP的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生范型。利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。
提供声明式事务;允许用户自定义切面。
横切关注点:跨越应用程序多个模块的方法或功能。即:与我们业务逻辑无关的,但是我们需要关注的部分,就是横切关注点。如日志 , 安全 , 缓存 , 事务等等 …
切面(ASPECT):横切关注点 被模块化 的特殊对象。即,它是一个类。
通知(Advice):切面必须要完成的工作。即,它是类中的一个方法。
目标(Target):被通知对象。
代理(Proxy):向目标对象应用通知之后创建的对象。
切入点(PointCut):切面通知执行的 “地点”的定义。
连接点(JointPoint):与切入点匹配的执行点。
SpringAOP中,通过Advice定义横切逻辑,Spring中支持5种类型的Advice:
总结:
Aop 支持在不改变原有代码的情况下 , 去增加新的功能。
建立一个maven项目,目录图如下
必须要导入一个依赖包!
<dependency>
<groupId>org.aspectjgroupId>
<artifactId>aspectjweaverartifactId>
<version>1.9.4version>
dependency>
接口
public interface UserService {
public void add();
}
实现类
import com.cm.service.UserService;
public class UserServiceImpl implements UserService {
public void add() {
System.out.println("add()方法");
}
}
Log
//MethodBeforeAdvice,顾名思义:在方法前执行
public class Log implements MethodBeforeAdvice {
public void before(Method method, Object[] objects, Object o) throws Throwable {
//这里要细心
System.out.println(o.getClass().getName() + "执行" + method.getName() + "方法之前");
}
}
LogAfter
import org.springframework.aop.AfterReturningAdvice;
import java.lang.reflect.Method;
//AfterReturningAdvice 顾名思义:在方法后执行
public class LogAfter implements AfterReturningAdvice {
public void afterReturning(Object o, Method method, Object[] objects, Object o1) throws Throwable {
//这里要细心
System.out.println(o1.getClass().getName() + "执行" + method.getName() + "方法之后");
}
}
applicationContext.xml
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
https://www.springframework.org/schema/aop/spring-aop.xsd">
<bean id="user" class="com.cm.service.impl.UserServiceImpl"/>
<bean id="log" class="com.cm.configer.Log"/>
<bean id="afterlog" class="com.cm.configer.LogAfter"/>
<aop:config>
<aop:pointcut id="pointcut" expression="execution(* com.cm.service.impl.UserServiceImpl.*(..))"/>
<aop:advisor advice-ref="log" pointcut-ref="pointcut"/>
<aop:advisor advice-ref="afterlog" pointcut-ref="pointcut"/>
aop:config>
beans>
测试
public class MyTest {
@Test
public void test1() {
ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
UserService user = (UserService) context.getBean("user");
user.add();
}
}
运行结果
新建一个类
Diy类
public class Diy {
public void before() {
System.out.println("=========开始前========");
}
public void after() {
System.out.println("=========结束后========");
}
}
修改applicationContext.xml
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
https://www.springframework.org/schema/aop/spring-aop.xsd">
<bean id="user" class="com.cm.service.impl.UserServiceImpl"/>
<bean id="log" class="com.cm.configer.Log"/>
<bean id="afterlog" class="com.cm.configer.LogAfter"/>
<bean id="diy" class="com.cm.configer.Diy"/>
<aop:config>
<aop:aspect ref="diy">
<aop:pointcut id="pointcut" expression="execution(* com.cm.service.impl.UserServiceImpl.*(..))"/>
<aop:before method="before" pointcut-ref="pointcut"/>
<aop:after method="after" pointcut-ref="pointcut"/>
aop:aspect>
aop:config>
beans>
其它不变
运行结果
新建一个注解类
Annotation类
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
@Aspect
public class Annotation {
@Before("execution(* com.cm.service.impl.UserServiceImpl.*(..))")
public void before() {
System.out.println("=========开始前========");
}
@After("execution(* com.cm.service.impl.UserServiceImpl.*(..))")
public void after() {
System.out.println("=========结束后========");
}
@Around("execution(* com.cm.service.impl.UserServiceImpl.*(..))")
public void around(ProceedingJoinPoint joinPoint) throws Throwable {
System.out.println("环绕前");
System.out.println(joinPoint.getSignature());
Object proceed = joinPoint.proceed();//执行,这里的值为null
System.out.println("环绕后");
System.out.println(proceed);
}
}
修改applicationContext.xml
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
https://www.springframework.org/schema/aop/spring-aop.xsd">
<aop:aspectj-autoproxy/>
<bean id="user" class="com.cm.service.impl.UserServiceImpl"/>
<bean id="log" class="com.cm.configer.Log"/>
<bean id="afterlog" class="com.cm.configer.LogAfter"/>
<bean id="annotation" class="com.cm.configer.Annotation"/>
beans>
其它不变
运行结果
图4=============