由于我试图在我的 Maven 项目中设置一个嵌入式容器,我希望它在集成测试阶段运行。我有两个无法解决的码头问题:
<daemon>true</daemon>
没有预期的效果。服务器正在运行,但随后它锁定了构建过程(实际上它阻止了单元测试)。那么我应该在哪里放置该配置?- 这
<useTestClasspath>true</useTestClasspath>
对我来说是个谜。我不想使用src/main/webapp/WEB-INF/lib
来放置 postgresql jar(由码头为数据源(postegresql-driver)调用),因为它将嵌入到应用程序中,我不希望它在战争中(客户端边)。所以我想使用<useTestClasspath>true</useTestClasspath>
,但是当我将 postgresql 放入其中时,src/test/resources
它找不到/识别它。那么,我应该如何使用该属性?
这是完整的插件配置:
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
<version>6.1.9</version>
<executions>
<execution>
<id>start-jetty</id>
<phase>pre-integration-test</phase>
<goals>
<goal>run-war</goal>
</goals>
<configuration>
<useTestClasspath>true</useTestClasspath>
<daemon>true</daemon>
<contextPath>agepro-prototype</contextPath>
<webApp>
${project.build.directory}/agepro-prototype.war
</webApp>
</configuration>
</execution>
<execution>
<id>stop-jetty</id>
<phase>post-integration-test</phase>
<goals>
<goal>stop</goal>
</goals>
</execution>
</executions>
<configuration>
<connectors>
<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
<port>9091</port>
</connector>
</connectors>
<stopPort>9092</stopPort>
<stopKey>test</stopKey>
</configuration>
</plugin>
提前感谢您为我提供的帮助。我必须为我的语法道歉,因为我的英语很糟糕。
问候,
德帕多