我对 maven2 和 java jar 项目有一点问题。
这是我的项目文件系统:
MyApp
-- /src/main/java
-- my.package
-- Main.java
-- /src/main/resources
-- application.properties
Pom.xml 使用标准 maven 插件配置为具有自定义包阶段:
<!-- copy resources from /src/main/resource to target -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.4</version>
<configuration>
<outputDirectory>${project.build.directory}</outputDirectory>
<overwrite>true</overwrite>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>resources</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- create an executable jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<finalName>${project.artifactId}-${project.version}</finalName>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
<mainClass>my.package.Main</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- copy dependencies jars to target/lib folder -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>false</overWriteSnapshots>
<overWriteIfNewer>true</overWriteIfNewer>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
</execution>
</executions>
</plugin>
使用此配置并调用 mvn package 一切正常:在目标文件夹中创建一个新 jar,并复制资源和依赖项。文件 application.properties 是通过 new File("application.properties") 引用的,它是由 JRE 找到的。如果我从目标文件夹手动运行 jar,它就可以工作!
现在我的问题:我想添加 exec-maven-plugin 来直接在 eclipse 中执行我的项目。这是我在 pom.xml 中的新插件:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<configuration>
<executable>java</executable>
<mainClass>my.package.Main</mainClass>
</configuration>
</plugin>
通过这种方式,我的类被执行并且所有的依赖项都得到了满足,但是我的资源(特别是 application.properties)没有找到,因为我的程序工作目录是 MyApp/target 的 MyApp。使用配置是没有用的。
我该如何解决这个问题?提前致谢