鉴于此配置:
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
<version>6.1.26</version>
<configuration>
<jettyConfig>${basedir}/src/main/config/jetty.xml</jettyConfig>
<jettyEnvXml>${project.build.directory}/jetty/jetty-env.xml</jettyEnvXml>
<classesDirectory>${project.build.directory}/classes</classesDirectory>
<scanIntervalSeconds>1</scanIntervalSeconds>
</configuration>
<dependencies>
<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>8.3-603.jdbc4</version>
</dependency>
<dependency>
<groupId>commons-dbcp</groupId>
<artifactId>commons-dbcp</artifactId>
<version>1.2.2</version>
</dependency>
</dependencies>
</plugin>
我在 src/main/java/com.mypackage/myproperties.properties 中有一些新值,它是 src/main/java/com.mypackage/myproperties.properties 的完美副本,来自在 pom 中声明为依赖项的 WAR。 xml
当我启动 mvn jetty:run 时,会发生覆盖,并且我的文件位于目标/类而不是原始文件中,并且具有预期的新值。
顺便说一句,码头一直在提供原始文件,我真的不知道为什么或从哪里来。
感谢您的任何提示,我已经花了将近 8 个小时来搜索和试验这个......
鲍,维兹