Maven和AspectJ包装不好

时间:2015-03-31 10:39:42

标签: java maven aspectj pom.xml

欢迎,

我有打包aspectj程序的问题。在pom.xml中使用这段代码:

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-jar-plugin</artifactId>
            <configuration>
            <excludes>
                <exclude>**/log4j.properties</exclude>
            </excludes>
            <archive>
                <manifest>
                    <addClasspath>true</addClasspath>
                    <mainClass>com.mkyong.core.utils.App</mainClass>
                    <classpathPrefix>dependency-jars/</classpathPrefix>
                </manifest>
            </archive>
            </configuration>
          </plugin>
          <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>aspectj-maven-plugin</artifactId>
            <version>1.7</version>
            <configuration>
              <ajdtBuildDefFile>build-1-5.ajproperties</ajdtBuildDefFile>
            </configuration>
            <executions>
              <execution>
                <goals>
                  <goal>compile</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
          <!-- OTHER PLUGINS -->
    </plugins>
</build>

在控制台上使用此命令:

mvn aspectj:compile
mvn exec:java

在所有方面都运行良好的程序。但是执行这条路线:

mvn package
java -jar target\<my-package>.jar

没有奏效。例外情况是:

Caused by: java.lang.ClassNotFoundException: org.aspectj.lang.Signature

有什么问题?

1 个答案:

答案 0 :(得分:0)

问题是手动运行程序时,AspectJ Runtime aspectjrt.jar 不在您的类路径中。你应该运行这样的程序:

java -cp path\to\aspectjrt.jar -jar target\<my-package>.jar

避免这种情况的唯一方法是使用像One-Jar这样的插件(依赖项被打包到应用程序JAR中并通过特殊的类加载器加载)或Maven Shade(依赖项被解压缩到您的JAR中)。

<plugin>
    <groupId>org.dstovall</groupId>
    <artifactId>onejar-maven-plugin</artifactId>
    <version>1.4.4</version>
    <executions>
        <execution>
            <goals>
                <goal>one-jar</goal>
            </goals>
        </execution>
    </executions>
    <configuration>
        <onejarVersion>0.96</onejarVersion>
        <mainClass>de.scrum_master.app.FooBar</mainClass>
        <attachToBuild>true</attachToBuild>
    </configuration>
</plugin>

<!-- (...) -->

<pluginRepositories>
    <pluginRepository>
        <id>OneJAR googlecode.com</id>
        <url>http://onejar-maven-plugin.googlecode.com/svn/mavenrepo</url>
    </pluginRepository>
</pluginRepositories>

然后你可以忘记将所有依赖项放在类路径上并使用:

java -jar target\<my-package>.one-jar.jar