如何通过配置禁用AspectJ编译

时间:2016-03-01 03:44:31

标签: java aop aspect

我用Java风格实现我的方面类:

@Aspect
public class SomeAspect {
  @Pointcut("...")
  public void somePointcut() {}

  @Around("somePointcut()")
  public ...
}

我是AspectJ的新手。我想知道是否有方便/集中的方式来控制Pointcut的有效性,以便我可以根据编译时的配置来启用/禁用它们。

1 个答案:

答案 0 :(得分:1)

运行时期间,你可以使用if() pointcut,但我知道这不是你想要的。

对于编译时间,这取决于您构建项目的方式。我假设您使用Maven和AspectJ Maven Plugin

让我们进一步假设您将插件配置为在process-sources阶段运行,如下所示:

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>aspectj-maven-plugin</artifactId>
    <version>1.8</version>
    <configuration>
        <!--<showWeaveInfo>true</showWeaveInfo>-->
        <source>${java.source-target.version}</source>
        <target>${java.source-target.version}</target>
        <Xlint>ignore</Xlint>
        <complianceLevel>${java.source-target.version}</complianceLevel>
        <encoding>${project.build.sourceEncoding}</encoding>
        <!--<verbose>true</verbose>-->
        <!--<warn>constructorName,packageDefaultMethod,deprecation,maskedCatchBlocks,unusedLocals,unusedArguments,unusedImport</warn>-->
    </configuration>
    <executions>
        <execution>
            <!-- IMPORTANT -->
            <phase>process-sources</phase>
            <goals>
                <goal>compile</goal>
                <goal>test-compile</goal>
            </goals>
        </execution>
    </executions>
    <dependencies>
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjtools</artifactId>
            <version>${aspectj.version}</version>
        </dependency>
    </dependencies>
</plugin>

然后只需添加一个Maven个人资料 - 让我们称之为skip-aspectj,通过<phase/>将相位覆盖为无:

<profiles>
    <profile>
        <id>skip-aspectj</id>
        <build>
            <plugins>
                <plugin>
                    <groupId>org.codehaus.mojo</groupId>
                    <artifactId>aspectj-maven-plugin</artifactId>
                    <executions>
                        <execution>
                            <phase/>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </build>
    </profile>
</profiles>

现在,如果您运行Maven构建

  • 通常情况下,会编译和应用这些方面,
  • 使用mvn -P skip-aspectj ...它们将处于非活动状态,并且只会跳过整个AspectJ Maven执行。