我aspectJ
在单独的 Maven 项目中创建了类:
@Aspect
public class AspectE {
@Pointcut("execution(@EntryPoint * *.*(..))")
public void defineEntryPoint() {
}
@Before("defineEntryPoint()")
public void setThreadName(JoinPoint joinPoint) {
...
}
@After("defineEntryPoint()")
public void removeThreadName(JoinPoint joinPoint) {
...
}
}
然后在第二个项目中,我注释了几个方法并添加到pom.xml
:
<dependency>
<groupId>first-project</groupId>
<artifactId>first-project</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>1.7.0</version>
</dependency>
但仍然根本看不到任何方面。我错过了一些步骤吗?我应该怎么办?