带有嵌入式 Jetty 的 Tapestry Web 应用程序
如何配置 Tapestry5 项目以使用嵌入式 Jetty 独立运行(通过 java -jar)?
我正在寻找一个关于 Tapestry5、Jetty、servlet/处理程序配置/连接这些点所需的任何内容的简短“食谱”...
我已经看到了一些点: 如何创建可执行 War,配置 Tapestry(将 Tapestry 引用为 servlet 过滤器)
编辑:由于服务器环境,我正在考虑独立运行的 web 应用程序。它不必嵌入 Jetty,但我不能依赖稳定的应用程序服务器。不过,仍在寻找食谱,所以我不会在死胡同上花太多时间...
另外,我希望 Jenkins (Hudson) 能够在部署更新时自动停止和启动服务器 - 我不这样做不知道这是否会影响我可以用 Jetty 做什么,f.ex。
How can I configure a Tapestry5 project to run standalone (via java -jar) with embedded Jetty?
I'm looking for a short "recipe" regarding Tapestry5, Jetty, configuration of servlets/ handlers/ whatever is needed to connect the dots...
I've seen a few dots: How to Create an Executable War, Configuring Tapestry (ref Tapestry as servlet filter)
Edit: I'm thinking about a standalone running webapp due to server circumstances. It doesn't have to be embedded Jetty, but I can't rely on a stable appserver. Still looking for a recipe, though, so I don't spend much time on dead ends...
Also, I'd like for Jenkins (Hudson) to be able to stop and start the server automatically when deploying updates - I don't know if that influences what I can do with Jetty, f.ex.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
嗯,我相信这是一个一般性的“如何进行战争问题”。假设你确实有一场战争,你可以使用 jetty 或 winstone 来“运行”它 - 请参阅:
http://winstone.sourceforge。 net
和
http:// www.enavigo.com/2008/08/29/deploying-a-web-application-to-jetty/
第一种情况,你可以直接做
Well, i believe this is a general "how to run a war question". Assuming you indeed have a war, you can use jetty or winstone to "run" it - see :
http://winstone.sourceforge.net
and
http://www.enavigo.com/2008/08/29/deploying-a-web-application-to-jetty/
In the first case, you can directly do
https://github.com/ccordenier/tapestry5-hotel-booking/
<-- 检查其 Maven 构建
http://tapestry. zone.apache.org:8180/tapestry5-hotel-booking/signin
https://github.com/ccordenier/tapestry5-hotel-booking/
<-- Check its maven build
http://tapestry.zones.apache.org:8180/tapestry5-hotel-booking/signin
我做了一些挖掘,这是我基本上最终遵循的简短秘诀:
stopKey
和stopPort
属性添加到 Maven Jetty 插件配置jetty:stop
然后clean install
mvn jetty:run &
瞧 - 我的 Java 应用程序已启动并使用自动更新的代码运行,无需任何应用程序服务器。
I did some digging, and this is the short recipe I basically ended up following:
stopKey
andstopPort
attribute to Maven Jetty plugin configurationjetty:stop
and thenclean install
mvn jetty:run &
Voila - my Java app is up and running with automatically updated code, without any appserver.