2015年9月之前正式发布前的解决方案
经过许多头痛和数小时的努力,幸运的是我可以解决这个问题。这是我所做的:
要使用aspectj-maven-plugin
Java 8,我可以配置版本 aspectj-maven-plugin 1.7(注意 aspectj-maven-plugin 1.6 适用于 Java 7)。
因此,maven 插件配置需要是:
<!-- AspectJ configuration -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>1.7-SNAPSHOT</version>
<configuration>
<complianceLevel>1.8</complianceLevel>
<source>1.8</source>
<target>1.8</target>
</configuration>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
</plugin>
顺便说一句,需要的aspectJ jars是:
<!-- Spring AOP + AspectJ -->
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>1.8.1</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
<version>4.0.4.RELEASE</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.8.1</version>
</dependency>
我一直在努力的最重要的事情是要安装 aspectj-maven-plugin 1.7 jar,我必须手动完成,因为这些 jar/pom 文件还没有在 maven repo 上。
更新:因此,可以从Haus Jira链接下载 jar 文件(查看附件部分)。如果 Haus 不再可用,您可以从我的 github 下载它:
https://github.com/fedepia/aspectj-maven-plugin-1.7
下载并复制到我的本地仓库后,我需要在目录中创建自己的 aspectj-maven-plugin-1.7-SNAPSHOT.pom
文件:
.m2\repository\org\codehaus\mojo\aspectj-maven-plugin\1.7-SNAPSHOT\aspectj-maven-plugin-1.7-SNAPSHOT.pom
我基于 1.6 版的副本,但不得不修改以下内容:
<version>1.7-SNAPSHOT</version>
<properties>
<aspectjVersion>1.8.1</aspectjVersion>
<mavenVersion>2.2.1</mavenVersion>
<changesPluginVersion>2.9</changesPluginVersion>
</properties>
就这些了,希望能帮到你。
更新:(添加更多详细信息,正如 Xtreme Biker 在评论中询问的那样)
在我的上下文配置中,我有:
<aop:aspectj-autoproxy />
<bean id="notificationAspect" class="com.integration.core.aspect.NotificationAspect" factory-method="aspectOf" scope="singleton"></bean>
对于我的 java 方面,我使用:
@Aspect
public class NotificationAspect
{
...
@AfterThrowing(pointcut="@annotation(com.integration.core.meta.NotifyOnFailure)", throwing="ex")
public void executeOnException(JoinPoint joinPoint, ExternalApiExecutionException ex) throws Throwable
{
...
自 2015 年 9 月以来终于发布了官方插件
这是官方插件版本对答案的更新。为了将 Java 8 与 AspectJ 一起使用,可以在此链接上找到官方的 aspectj maven 插件:
http://www.mojohaus.org/aspectj-maven-plugin/usage.html
这是maven存储库的链接:
http://mvnrepository.com/artifact/org.codehaus.mojo/aspectj-maven-plugin/1.8
正如文档所述,使用它的代码是:
<project>
...
<dependencies>
...
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>1.8.7</version>
</dependency>
...
</dependencies>
...
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<goals>
<goal>compile</goal> <!-- use this goal to weave all your main classes -->
<goal>test-compile</goal> <!-- use this goal to weave all your test classes -->
</goals>
</execution>
</executions>
</plugin>
...
</plugins>
<build>
...
</project>