如何从jetty-maven-plugin获取端口号?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它是这样工作的:
然后
${jetty.port}
可以用于 jetty 插件。This is how it works:
Then
${jetty.port}
can be used for jetty plugin.