我试图通过以下方式拦截休息服务电话
package mypackage.services.Service;
@Component
public class Service {
@Override
public Response helloService() {
return handleResult("Hello test " + new Date());
}
}
@Component
@Aspect
public class AuditLog {
@Before("execution(* mypackage.services.Service.*(..))")
public void beforeServcie(JoinPoint jp){
log.info("Before ",jp.getSignature().getName());
}
}
我使用以下maven依赖项
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
<version>4.3.6</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>1.8.10</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.8.10</version>
</dependency>
这个maven插件
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>1.0</version>
</plugin>
我的配置xml包含
<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-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd">
<context:component-scan base-package="mypackage"/>
<aop:aspectj-autoproxy proxy-target-class="true" />
同样在Application类中我添加了以下注释
@Configuration
@EnableAspectJAutoProxy(proxyTargetClass=true)
public class Configuration{
...
}
在启动时,通过在ApplicationContext中记录bean,我可以看到方面类&#34; AuditLog&#34;正在创建。
我设置了2个断点,但是调试器没有停在&#34; beforeServcie&#34;方法,但它确实停在&#34; helloService&#34;。
我错过了什么?
答案 0 :(得分:0)
试试这个
execution(* mypackage.services.Service.*.*(..))
而不是
execution(* mypackage.services.Service.*(..))
答案 1 :(得分:0)
如果你使用的是 spring-boot 那么你可以做的不是自动添加依赖 jar
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
</dependency>
如果您使用的是 XML 配置 <aop:aspectj-autoproxy ... />
,则不需要 @EnableAspectJAutoProxy
。这可能无关紧要,因为 AFAIK XML 配置胜过注释配置,但最好避免重复
我不太确定你为什么需要 aspectj-maven-plugin
因为 Spring 通过代理和 AFAIK 实现 AOP 这个插件只在编译时、编译后或加载时编织时需要,这是不同的概念,见Spring AOP vs AspectJ
现在上述所有要点可能无法解决您的问题,但以下几点可能
execution(* mypackage.services.Service.Service.*(..))
而且,不要设置 proxyTargetClass=true
,让它默认为 false。
说明
格式为execution(<return type> <package name>.<class name>.<method name>(..)
这里的包名是mypackage.services.Service,类名是Service。