美文网首页SpringBoot专题
Springboot中@Aspect无法引入

Springboot中@Aspect无法引入

作者: laoguigui2019 | 来源:发表于2020-09-21 15:18 被阅读0次

问题:


image.png

解决方法:在pom文件中引入下面两个依赖

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

    <dependency>
        <groupId>org.aspectj</groupId>
        <artifactId>aspectjweaver</artifactId>
    </dependency>

相关文章

网友评论

    本文标题:Springboot中@Aspect无法引入

    本文链接:https://www.haomeiwen.com/subject/eemvyktx.html