如何运行jetty 7+与 groovy/gradle 的指定战争?
我想使用 gradle build 运行 Jetty 7+,但不幸的是,似乎无法使用 jettyRun 来执行此操作。所以实现我想要的最简单的想法可能是使用自定义目标:
task runJetty << {
def server = new Server()
// more code here
server.start()
server.join()
}
不幸的是我刚刚开始使用 gradle 并且我也不知道 groovy,所以我很难创建正确的目标。我正在互联网上查找,但找不到任何解决方案。 谁能给我一些可以用jetty运行现有jar的示例groovy代码吗?
I want to run Jetty 7+ with gradle build, but unlucky looks like there is no way to do this with jettyRun. So probably simplest idea to achieve what I want would be to use custom target:
task runJetty << {
def server = new Server()
// more code here
server.start()
server.join()
}
Unlucky I just started with gradle and I don't know groovy either, so it's hard for me to create proper target. I was looking over the internet but I wasn't able to find any solution.
Can anyone hit me with some sample groovy code which can run existing jar with jetty?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
好的,我找到了如何直接从存储库使用 jetty 运行它:
Ok, I found out how to run it using jetty directly from repository:
这是一个使用 jetty ant 任务的工作版本。这最终使我能够使用 deamon=true 进行适当的控制。
Here's a working version, using the jetty ant tasks. This finally enabled me the proper control with deamon=true.
有一个 jetty-eclipse-plugin 可以让你运行更新版本的 jetty
https://github.com/Khoulaiz/gradle-jetty-eclipse-plugin
There is a jetty-eclipse-plugin that allows you to run newer versions of jetty
https://github.com/Khoulaiz/gradle-jetty-eclipse-plugin
jetty插件目前支持jetty 6.1.25
你可以使用这样的东西:
jetty plugin supports jetty 6.1.25 at present
You can use something like this: