我在我的Maven项目中添加了this Stack Overflow question中建议的解决方案。我介绍的建议解决方案的唯一区别是将<tasks />
替换为<target />
(我遇到的问题也出现在其中)。
在测试方面,一切都很好。当我运行我的测试时,正在使用正确的(test-persistence.xml)持久性文件。但是,当我正在进行干净安装或甚至从我的IDE(Netbeans 8.2)运行时,只执行第一个目标(复制 - 测试 - 持久性)。第二次执行是在测试之后输入的(参见下面的构建输出),但是不执行目标。每次clean install
之后我所做的事情以及在服务器上运行应用程序时,test-persistence.xml
的内容都在persistence.xml
文件中。正确的内容保留在第一个目标中创建的persistence.xml.proper
中。
--- maven-antrun-plugin:1.8:run (copy-test-persistence) @ RimmaNew ---
Executing tasks
main:
[copy] Copying 1 file to /my-project-home/target/classes/META-INF
[copy] Copying 1 file to /my-project-home/target/classes/META-INF
Executed tasks
...
--- maven-antrun-plugin:1.8:run (restore-persistence) @ RimmaNew ---
Executing tasks
main:
Executed tasks
您会注意到restore-persistence
下执行了0个任务。奇怪的是,在创建的/target/antrun
文件夹中有一个build-main.xml
文件,其中包含跳过的任务:
<?xml version="1.0" encoding="UTF-8" ?>
<project name="maven-antrun-" default="main" >
<target name="main">
<copy file="/home/vgorcinschi/NetBeansProjects/rimmanew/target/classes/META-INF/persistence.xml.proper" tofile="/home/vgorcinschi/NetBeansProjects/rimmanew/target/classes/META-INF/persistence.xml"/>
</target>
</project>
如果你能给我一个暗示,我将不胜感激,因为我无法理解这一点。我很常见的是发布我当前的pom.xml
:
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<id>copy-test-persistence</id>
<phase>process-test-resources</phase>
<configuration>
<target>
<!--backup the "proper" persistence.xml-->
<copy file="${project.build.outputDirectory}/META-INF/persistence.xml" tofile="${project.build.outputDirectory}/META-INF/persistence.xml.proper" />
<!--replace the "proper" persistence.xml with the "test" version-->
<copy file="${project.build.testOutputDirectory}/META-INF/test-persistence.xml" tofile="${project.build.outputDirectory}/META-INF/persistence.xml" />
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
<execution>
<id>restore-persistence</id>
<phase>prepare-package</phase>
<configuration>
<target>
<!--restore the "proper" persistence.xml-->
<copy file="${project.build.outputDirectory}/META-INF/persistence.xml.proper" tofile="${project.build.outputDirectory}/META-INF/persistence.xml" />
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
答案 0 :(得分:2)
这个问题与Ant copy
任务的工作方式有关:
默认情况下,只有在源文件比目标文件更新或目标文件不存在时才复制文件。
这是问题所在。 Ant检测到目标文件已经存在,并且它不是更新的。有一个粒度可以确定&#34;更新&#34;,默认情况下,它在DOS系统上是1秒或2秒。那么,在构建过程中,persistence.xml
被Maven复制到构建目录中,其最后修改日期被更改(参数资源插件doesn't keep it),然后您自己的副本只有少数几毫秒之后。因此,复制的persistence.xml.proper
永远不会更新,因为这一切都发生在默认粒度期间。
您可以使用
将overwrite
参数设置为true
来强制复制
<copy file="${project.build.outputDirectory}/META-INF/persistence.xml.proper"
tofile="${project.build.outputDirectory}/META-INF/persistence.xml"
overwrite="true"/>
或者您可以使用move
任务,因为您可能不需要保留.proper
文件:
<move file="${project.build.outputDirectory}/META-INF/persistence.xml.proper"
tofile="${project.build.outputDirectory}/META-INF/persistence.xml" />