How to use aspectj-maven-plugin

百般思念 提交于 2019-12-03 16:06:45

You need to install the AspectJ Maven configurator. It is available here:

http://dist.springsource.org/release/AJDT/configurator/

Help -> Install new software...

Add this update site to the "work with" section and select the feature.

To resolve this plugin execution issue with aspectj-maven-plugin, you can wrap your tag with tag in your pom.xml. This will remove the exception in eclipse.

Shown as below:

<build>
    ....
    <pluginManagement>
        <plugins>
            <plugin> ... </plugin>
             ....
             ....
        </plugins>
    </pluginManagement>
</build>
for_mxq

You can add like this :

<executionManger><execution>...<execution/><executionManger/>

it will be working

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!