AOP(Aspect Oriented Programming):
面向切面编程,通过预编译方式和运行期动态代理实现程序功能的统一维护的一种技术。AOP是OOP的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生范型。利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。
即:AOP在不改变原有代码的基础上,增加新的功能
名词解释:
1.横切关注点:跨越应用程序多个模块的方法或功能。与我们业务逻辑无关的,但是我们需要关注的部分就是横切关注点。如日志 , 安全 , 缓存 , 事务等等 .... 2.切面(ASPECT):横切关注点被模块化的特殊对象。即,它是一个类。 3.通知(Advice):切面必须要完成的工作。它是类中的一个方法。 4.目标(Target):被通知对象。 5.代理(Proxy):向目标对象应用通知之后创建的对象。 6.切入点(PointCut):切面通知执行的 “地点”的定义。 7.连接点(JointPoint):与切入点匹配的执行点。需要导入依赖包
<!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.9.6</version>
</dependency>
方式一:通过Spring API实现
首先编写我们的业务接口和实现类
public interface UserService {
public void add();
public void delete();
public void update();
public void select();
}
package com.spring.demo;
public class UserServiceImpl implements UserService {
@Override
public void add() {
System.out.println("添加用户信息");
}
@Override
public void delete() {
System.out.println("删除用户信息");
}
@Override
public void update() {
System.out.println("修改用户信息");
}
@Override
public void select() {
System.out.println("查询用户信息");
}
}
然后去写我们的增强类 , 我们编写两个 , 一个前置增强 一个后置增强
//前置增强类
public class Log implements MethodBeforeAdvice {
@Override
//method:要执行目标对象的方法
//objects:被调用目标方法的参数
//o:目标对象
public void before(Method method, Object[] objects, Object o) throws Throwable {
System.out.println(o.getClass().getName() + "类的" + method.getName() + "方法被执行");
}
}
//后置增强类
public class AfterLog implements AfterReturningAdvice {
@Override
//o:返回值
//method:被调用的方法
//objects:被调用方法对象的参数
//o1:被调用的目标对象
public void afterReturning(Object o, Method method, Object[] objects, Object o1) throws Throwable {
System.out.println(o1.getClass().getName() + "中的" + method.getName() + "方法被执行 " + "返回值:" + o);
}
}
之后我们编写配置文件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/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<!--注册bean-->
<bean id="userServiceImpl" class="com.spring.demo.UserServiceImpl"/>
<bean id="log" class="com.spring.demo.log.Log"/>
<bean id="afterLog" class="com.spring.demo.log.AfterLog"/>
<!--方式一:使用原生的Spring API接口-->
<!--AOP的配置-->
<aop:config>
<!--切入点(我们需要在哪个地方去执行):execution(要执行的位置 .*(..)表示任意方法下的任意参数) -->
<aop:pointcut id="pointcut" expression="execution(* com.spring.demo.UserServiceImpl.*(..))" />
<!--执行环绕增强-->
<aop:advisor advice-ref="log" pointcut-ref="pointcut"/>
<aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/>
</aop:config>
</beans>
测试
@Test
public void aopTest(){
ApplicationContext applicationContext = new ClassPathXmlApplicationContext("ApplicationContext.xml");
//动态代理的是接口
UserService userService = (UserService)applicationContext.getBean("userServiceImpl");
userService.add();
}
方式二:自定义类来实现AOP
自定义切入类:
public class Log {
public void beforeLog(){
System.out.println("方法执行前");
}
public void afterLog(){
System.out.println("方法执行后");
}
}
配置xml文件:
<!--方式二:自定义类实现-->
<bean id="log" class="com.spring.demo.diy.Log"/>
<aop:config>
<aop:aspect ref="log">
<!--切入点(我们需要在哪个地方去执行):execution(要执行的位置) -->
<!--* com.spring.demo.UserServiceImpl.*(..)
第一个*:表示返回值类型
第二个*:表示该类下的所有方法
(..):表示该方法下的任意参数
-->
<aop:pointcut id="pointcut" expression="execution(* com.spring.demo.UserServiceImpl.*(..))"/>
<aop:before pointcut-ref="pointcut" method="beforeLog"/>
<aop:after pointcut-ref="pointcut" method="afterLog"/>
</aop:aspect>
</aop:config>
测试:
@Test
public void aopTest(){
ApplicationContext applicationContext = new ClassPathXmlApplicationContext("ApplicationContext.xml");
//动态代理的是接口
UserService userService = (UserService)applicationContext.getBean("userServiceImpl");
userService.delete();
}