AOP
AOP(Aspect Oriented Programming)意为:面向切面编程,通过预编译方式和运行期动态代理实现程序功能的统一维护的一种技术。AOP是OOP的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生范型。利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。
1.Aop在Spring中的作用
提供声明式事务;允许用户自定义切面
以下名词需要了解下:
- 横切关注点:跨越应用程序多个模块的方法或功能。即是,与我们业务逻辑无关的,但是我们需要关注的部分,就是横切关注点。如日志 , 安全 ,
缓存 , 事务等等 … - 切面(ASPECT):横切关注点 被模块化 的特殊对象。即,它是一个类。
- 通知(Advice):切面必须要完成的工作。即,它是类中的一个方法。
- 目标(Target):被通知对象。
- 代理(Proxy):向目标对象应用通知之后创建的对象。
- 切入点(PointCut):切面通知 执行的 “地点”的定义。
- 连接点(JointPoint):与切入点匹配的执行点。
2.实现Aop 导入依赖:
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.9.4</version>
</dependency>
方式一:使用原生API进行实现AOP
业务类:
public interface UserService {
//增删改查
public void add();
public void delete();
public void update();
public void query();
}
实现类:
//真实对象
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 query() {
System.out.println("查询用户");
}
}
然后去写额外的功能类:
后置类:
public class AfterLog implements AfterReturningAdvice {
//returnValue 返回值
//method被调用的方法
//args 被调用的方法的对象的参数
//target 被调用的目标对象
@Override
public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable {
System.out.println(args.getClass().getName()+"的"+method.getName()+"被执行了"+returnValue);
}
}
前置类:
public class Log implements MethodBeforeAdvice {
//method : 要执行的目标对象的方法
//objects : 被调用的方法的参数
//Object : 目标对象
@Override
public void before(Method method, Object[] args, Object target) throws Throwable {
System.out.println(args.getClass().getName()+"的"+ method.getName()+"方法被执行了");
}
}
然后到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: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">
<!--注册bean-->
<bean id="userService" class="com.xiong.service.UserServiceImpl"/>
<bean id="log" class="com.xiong.log.Log"/>
<bean id="afterLog" class="com.xiong.log.AfterLog"/>
<!--aop的配置 需要导入aop约束-->
<aop:config>
<!--切入点 expression:表达式匹配要执行的方法-->
<aop:pointcut id="pointcut" expression="execution(* com.xiong.service.UserServiceImpl.*(..))"/>
<!--执行环绕; advice-ref执行方法 . pointcut-ref切入点-->
<aop:advisor advice-ref="log" pointcut-ref="pointcut"/>
<aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/>
</aop:config>
</beans>
测试类:
public class Mytest {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
//动态代理的是一个接口类
UserService service = (UserService) context.getBean("userService");
service.query();
}
}
方式二:自定义实现AOP 创建一个自定义类DiyPointCut :
public class DiyPointCut {
public void before(){
System.out.println("---------方法执行前---------");
}
public void after(){
System.out.println("---------方法执行后---------");
}
}
到配置文件中去注册:
<!-- 方式二 使用AOP的标签实现aop:aspect 是一个类 -->
<bean id="diy" class="com.xiong.diy.DiyPointCut"/>
<aop:config>
<aop:aspect ref="diy">
<aop:pointcut id="diyPonitcut" expression="execution(* com.xiong.service.UserServiceImpl.*(..))"/>
<aop:before pointcut-ref="diyPonitcut" method="before"/>
<aop:after pointcut-ref="diyPonitcut" method="after"/>
</aop:aspect>
</aop:config>
测试类不变,进行测试,能得出结果。
方式三:注解方式实现AOP 编写一个自定义的注解类AnnotationPointCut :
@Aspect//标注这个类是一个切面
public class AnnotationPointCut {
@Before("execution(* com.xiong.service.UserServiceImpl.*(..))")
public void befor(){
System.out.println("=============方法执行前==================");
}
@After("execution(* com.xiong.service.UserServiceImpl.*(..))")
public void after(){
System.out.println("=============方法执行前==================");
}
@Around("execution(* com.xiong.service.UserServiceImpl.*(..))")
public void around(ProceedingJoinPoint pj) throws Throwable {
System.out.println("===环绕前===");
Signature signature = pj.getSignature();//获得签名
System.out.println("signature"+signature);
Object proceed = pj.proceed();//执行方法
System.out.println("===环绕后===");
}
}
注册到xml配置文件中:
<!-- 方式三-->
<bean id="ann" class="com.xiong.diy.AnnotationPointCut"/>
<!-- 开启注释类 -->
<aop:aspectj-autoproxy/>
测试类,不变,可以看出其结果和其他的不一样。
|