无法将AspectJ与Maven集成

时间:2011-09-09 05:00:54

标签: maven maven-plugin aspectj

我猛冲了两天,将aspectj与maven整合,但没有奏效。 我正在编写一个带有两个建议的简单程序(在eclipse中可以正常工作,因此我确信它不是代码端错误)。

我最近开始使用maven进行项目构建。想不出为什么我无法启动aspectj编译器。

在通过maven编译期间 - 我只获得了java的类文件而没有编织。 .aj文件未编译。

请帮助!!!!

第一个方面文件 - ExceptionAspects.aj

package com.aspectSample;

public aspect ExceptionAspects {

pointcut ExceptionHandler(Exception e) : handler(Exception+) && args(e) && within(com.clickable.*);
pointcut callbeforeMethod():execution( public void HelloWorldExclude.*(..)) ;

before(Exception ex) : ExceptionHandler(ex)
{       
    System.out.println("Added Aspects before Exception :"+ex.toString());
}

before(): callbeforeMethod()
{
    System.out.println("Aspect Before Method Call");
}


pointcut sysOutOrErrAccess() : get(* System.out) || get(* System.err);

declare error
  : sysOutOrErrAccess()
  : "Don't write to the console";

}

源java文件HelloWorldExclude.java         package com.aspectSample;

    import java.sql.SQLException;

    public class HelloWorldExclude {

 private void FoulIntro(String message, String name) throws SQLException
    {
        throw new SQLException("WriteSomething");
    }

 public void GiveMeFoulIntro(String message, String name)
    {
        try
        {
            this.FoulIntro(message, name);

        }catch(SQLException exp)
        {
            System.out.println("catching exception");
        }
    }
}

并且pom.xml文件是

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.clickable.HelloWorld-Maven</groupId>
<artifactId>HelloWorldAspect-Maven</artifactId>
<version>1.0.0</version>
<name>HelloWorld Aspect</name>
<packaging>jar</packaging>
<description>Hello World Code</description>
<properties>
    <java-version>1.6</java-version>
    <org.aspectj-version>1.6.11</org.aspectj-version>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>

<build>
    <pluginManagement>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>aspectj-maven-plugin</artifactId>
                <version>1.4</version>
                <executions>
                    <execution>
                        <goals>
                              <goal>compile</goal>                              
                        </goals>
                    </execution>
                </executions>
                <configuration> 
                <source>${java-version}</source> 
                <target>${java-version}</target> 
                </configuration>
            </plugin>
        </plugins>
    </pluginManagement>
</build>
<dependencies>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.5</version>
        <scope>test</scope>
    </dependency>

    <dependency>
        <groupId>org.aspectj</groupId>
        <artifactId>aspectjrt</artifactId>
        <version>${org.aspectj-version}</version>
    </dependency>       
</dependencies>
</project>

2 个答案:

答案 0 :(得分:0)

您可以尝试一些事项:

  • 明确提供maven-aspectj插件的依赖项:

        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>aspectj-maven-plugin</artifactId>
            <version>1.4</version>
            <dependencies>
                <dependency>
                    <groupId>org.aspectj</groupId>
                    <artifactId>aspectjrt</artifactId>
                    <version>${aspectj.version}</version>
                </dependency>
                <dependency>
                    <groupId>org.aspectj</groupId>
                    <artifactId>aspectjtools</artifactId>
                    <version>${aspectj.version}</version>
                </dependency>
            </dependencies>
    

使用aspectjrt和aspectjtools的版本匹配您正在使用的aspectj的版本。

  • 您是否有任何机会在测试文件夹中有任何来源, 使用src / test文件夹,然后将方面编织到测试源,你必须在maven-aspectj插件中明确提到:

                <executions>
                <execution>
                    <goals>
                        <goal>compile</goal>
                        <goal>test-compile</goal>
                    </goals>
                </execution>
            </executions>
    

答案 1 :(得分:0)

pom文件中有一个愚蠢的错误。 aspectj插件是在element下添加的,它只是所有插件的配置。它不会告诉编译器使用什么。

一旦我从这个元素中删除了插件,它就会起作用。

由于 的Pankaj