如何从jetty-maven-plugin获取端口号?

发布于 2024-11-17 06:53:09 字数 200 浏览 5 评论 0原文

jetty-maven-plugin 7.x,在集成测试中使用时,动态查找可用端口,在运行时。如何保存找到的端口号并在 Java 集成测试中使用它?也许jetty-maven-plugin可以将其保存到系统变量中?

jetty-maven-plugin 7.x, when used in integration testing, dynamically finds available port, in runtime. How can I save the number of the port found and use it in Java integration tests? Maybe jetty-maven-plugin can save it into a system variable?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心安伴我暖 2024-11-24 06:53:09

它是这样工作的:

        <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 插件。

This is how it works:

        <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>

Then ${jetty.port} can be used for jetty plugin.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文