我有一个项目,我想使用方面但不使用 spring。所以我正在使用AspectJ。在我的特定场景中,LTW 对我不起作用,所以我必须使用 CTW,这导致我使用了 maven aspectj 插件。我目前正在使用 Java 7。我正在将一个 maven 模块中编写的方面编织到另一个模块中,该模块将其作为依赖项。
当我编织非注释方面时,插件似乎正确编织,但是当我将其切换到基于注释的方面时,插件似乎没有写入 hasaspect() 和 aspectof() 方法,因为在运行时我收到异常说方法不存在。
我尝试的一件事是让基于注释的方面扩展 Aspects 类,希望它能够找到方法,但这也不起作用。
我的插件配置如下:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>1.4</version>
<configuration>
<showWeaveInfo>false</showWeaveInfo>
<Xlint>ignore</Xlint>
<source>1.7</source>
<target>1.7</target>
<complianceLevel>1.7</complianceLevel>
<encoding>UTF-8</encoding>
<verbose>false</verbose>
<weaveDirectories>
<weaveDirectory>${project.build.outputDirectory}</weaveDirectory>
</weaveDirectories>
<aspectLibraries>
<aspectLibrary>
<groupId>my.group</groupId>
<artifactId>dependencywithaspecttoweave</artifactId>
</aspectLibrary>
</aspectLibraries>
</configuration>
<executions>
<execution>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjtools</artifactId>
<version>1.7.2</version>
</dependency>
</dependencies>
我的注释方面如下所示:
public class TraceLog extends Aspects {
private ComponentLogger logger;
@Pointcut(value = "within(my.package..*) && "
+ "execution(* *(..))")
public void scope() {
}
/**
* Before method.
*
* @param thisJoinPoint The joinpoint.
* @throws IllegalAccessException When it tries to get the logger and can't.
*/
@Before(value = "scope()")
public void logBefore(final JoinPoint thisJoinPoint) throws IllegalAccessException {
logMethod(thisJoinPoint, "Entering " + createLogMessage(thisJoinPoint));
}
...
我必须做的是恢复到普通的旧无注释方面样式。但这是一个拖累,因为我不能从方法中抛出异常(或者至少到目前为止,我不知道如何)。抛出异常对于诸如安全之类的事情特别有用,如果用户没有访问权限,异常将是提醒调用者的适当方式。
提前致谢。