2023-02-18  阅读(4)
原文作者: chen_hao 原文地址:https://www.cnblogs.com/java-chen-hao/p/11850862.html

本篇主要集成Sping一个重要功能AOP

我们还是先回顾一下以前Spring中是如何使用AOP的,大家可以看看我这篇文章spring5 源码深度解析----- AOP的使用及AOP自定义标签

Spring中使用AOP

引入Aspect

    <dependency>
        <groupId> org.aspectj </groupId>
        <artifactId> aspectjweaver </artifactId>
        <version>${aspectj.version}</version>
    </dependency>

创建用于拦截的bean

    public class TestBean {
        private String message = "test bean";
    
        public String getMessage() {
            return message;
        }
    
        public void setMessage(String message) {
            this.message = message;
        }
    
        public void test(){
            System.out.println(this.message);
        }
    }

创建Advisor

    @Aspect
    public class AspectJTest {
        @Pointcut("execution(* *.test(..))")
        public void test(){
        }
        
        @Before("test()")
        public void beforeTest(){
            System.out.println("beforeTest");
        }
        
        @Around("test()")
        public Object aroundTest(ProceedingJoinPoint p){
            System.out.println("around.....before");
            Object o = null;
            try{
                o = p.proceed();
            }catch(Throwable e){
                e.printStackTrace();
            }
            System.out.println("around.....after");
            return o;
        }
        
        @After("test()")
        public void afterTest()
        {
            System.out.println("afterTest");
        }
     }

创建配置文件

要在Spring中开启AOP功能,还需要在配置文件中作如下声明,开启AOP:

    <?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">
    
         <aop:aspectj-autoproxy/> 
        <bean id="test" class="com.yhl.myspring.demo.aop.TestBean">
            <property name="message" value="这是一个苦逼的程序员"/>
        </bean>
        <bean id="aspect" class="com.yhl.myspring.demo.aop.AspectJTest"/>
    </beans>

注解开启AOP

开启AOPaop:aspectj-autoproxy/也可以使用注解的方式,如下,使用 @EnableAspectJAutoProxy 配置在任何一个@Configratrion或者@Component上

202302182259534021.png

SpringBoot集成AOP

添加pom依赖

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId> spring-boot-starter-aop </artifactId>
    </dependency>

引入了AOP的场景启动器,我们点击去看看

202302182259541072.png

还是引入了spring-aop和aspectj的依赖,和我们Spring集成AOP是引入了相同的包,接着我们直接就可以创建Advisor了,如上AspectJTest这个类,但是我们并没有通过 @EnableAspectJAutoProxy开启AOP呢?那是因为AOP的自动配置类帮我们开启了

AopAutoConfiguration

一旦导入了spring-boot-starter-aop依赖后,SpringBoot就会启动AOP的自动配置类AopAutoConfiguration:

202302182259549773.png

我们来看看AopAutoConfiguration这个自动配置类

    @Configuration
    @ConditionalOnClass({ EnableAspectJAutoProxy.class, Aspect.class, Advice.class })
    @ConditionalOnProperty(prefix = "spring.aop", name = "auto", havingValue = "true", matchIfMissing = true)
    public class AopAutoConfiguration {
    
        @Configuration
         //使用注解开启AOP功能
        @EnableAspectJAutoProxy(proxyTargetClass = false  ) 
        @ConditionalOnProperty(prefix = "spring.aop", name = "proxy-target-class", havingValue = "false", matchIfMissing = true)
        public static class JdkDynamicAutoProxyConfiguration {
    
        }
    
        @Configuration
         //使用注解开启AOP功能
        @EnableAspectJAutoProxy(proxyTargetClass = true  ) 
        @ConditionalOnProperty(prefix = "spring.aop", name = "proxy-target-class", havingValue = "true", matchIfMissing = false)
        public static class CglibAutoProxyConfiguration {
    
        }
    
    }

不管使用jdk代理还是cglib代理,都有@EnableAspectJAutoProxy注解,所以只要导入spring-boot-starter-aop依赖后,就自动帮我们开启了AOP,我们可以直接添加切面使用AOP了

@EnableAspectJAutoProxy这个注解是整个AOP的灵魂,其作用和aop:aspectj-autoproxy/是一样的,大家可以看看其源码分析spring5 源码深度解析----- AOP的使用及AOP自定义标签


Java 面试宝典是大明哥全力打造的 Java 精品面试题,它是一份靠谱、强大、详细、经典的 Java 后端面试宝典。它不仅仅只是一道道面试题,而是一套完整的 Java 知识体系,一套你 Java 知识点的扫盲贴。

它的内容包括:

  • 大厂真题:Java 面试宝典里面的题目都是最近几年的高频的大厂面试真题。
  • 原创内容:Java 面试宝典内容全部都是大明哥原创,内容全面且通俗易懂,回答部分可以直接作为面试回答内容。
  • 持续更新:一次购买,永久有效。大明哥会持续更新 3+ 年,累计更新 1000+,宝典会不断迭代更新,保证最新、最全面。
  • 覆盖全面:本宝典累计更新 1000+,从 Java 入门到 Java 架构的高频面试题,实现 360° 全覆盖。
  • 不止面试:内容包含面试题解析、内容详解、知识扩展,它不仅仅只是一份面试题,更是一套完整的 Java 知识体系。
  • 宝典详情:https://www.yuque.com/chenssy/sike-java/xvlo920axlp7sf4k
  • 宝典总览:https://www.yuque.com/chenssy/sike-java/yogsehzntzgp4ly1
  • 宝典进展:https://www.yuque.com/chenssy/sike-java/en9ned7loo47z5aw

目前 Java 面试宝典累计更新 400+ 道,总字数 42w+。大明哥还在持续更新中,下图是大明哥在 2024-12 月份的更新情况:

想了解详情的小伙伴,扫描下面二维码加大明哥微信【daming091】咨询

同时,大明哥也整理一套目前市面最常见的热点面试题。微信搜[大明哥聊 Java]或扫描下方二维码关注大明哥的原创公众号[大明哥聊 Java] ,回复【面试题】 即可免费领取。

阅读全文