向嵌入式 Jetty 添加/删除 Web 应用程序
我启动了一个 Jetty 嵌入式服务器。
我希望能够对 Web 应用程序进行热部署,并能够再次卸载它,所有这些都以编程方式进行。
服务器启动后,任何向其添加处理程序的尝试都会引发错误。
我尝试使用 ContextHandlerCollection,然后使用 .addContext() 来启动并运行它,但不确定这是否是正确的方法。
有人可以指出我正确的方向吗?谢谢
I have a Jetty embedded server started up.
I wish to be able to do a hot deploy of a webapp and be able to unload it again, all programmatically.
Once the server is started, any attempts to add a handler to it throws an error.
I tried using ContextHandlerCollection and then using .addContext() to get it up and running but not sure if that is the right way to go about it.
Can someone please point me in the right direction? thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个热交换适用于我(Jetty 7) - 该代码专门用于交换启动时定义的 Web 应用程序并循环遍历现有处理程序。要动态添加新的 Web 应用程序,您只需添加一些找到的标志逻辑。 HTH。
This hotswap works for me (Jetty 7) - this code is specific for swapping Web Apps defined at startup and loops through the existing handlers. To add a new Web App dynamically, you would just have to add some found flag logic. HTH.