jetty-maven-plugin 7.x,在集成测试中使用时,在运行时动态查找可用端口。如何保存找到的端口号并在Java集成测试中使用它?也许jetty-maven-plugin可以将它保存到系统变量中?
答案 0 :(得分:3)
这是它的工作原理:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.6</version>
<configuration>
<portNames>
<portName>jetty.port</portName>
<portName>jetty.port.stop</portName>
</portNames>
</configuration>
<executions>
<execution>
<id>reserve-port</id>
<phase>pre-integration-test</phase>
<goals>
<goal>reserve-network-port</goal>
</goals>
</execution>
</executions>
</plugin>
然后${jetty.port}
可以用于jetty插件。