从 Java Web Start 运行 Tomcat
是否可以通过 Java Web Start 分发 Tomcat 并从那里运行它?
我的应用程序应在部署它的计算机上自己的 Tomcat 服务器中运行。我可以将 Tomcat 和客户端应用程序打包到一个 Java Web Start 存档中,并在用户获得后运行 Tomcat 服务器和客户端吗? 下载了 Java Web Start 存档吗?
Is it possible to distribute Tomcat by Java Web Start and run it from there?
My application shall run within its own Tomcat server on the machine it is deployed on. Can I package Tomcat and the client application into one Java Web Start archive and run the Tomcat server and the client once the user has
downloaded the Java Web Start archive?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您无法运行完整的 Tomcat,因为它需要文件系统和脚本等中的特定布局。
不过,您可以在完全控制的应用程序中运行嵌入式 Web 服务器。我已经用 Jetty 做到了这一点。您可能会发现如何嵌入 Tomcat 6?很有趣。
You cannot run a full blown Tomcat as it expects a certain layout in the filesystem and scripts and more.
You can however run an embedded web server in an application where you control it completely. I have done that with Jetty. You might find Howto embed Tomcat 6? interesting.
如果您正确签署了所有罐子,这可能是可能的。但是,这似乎是一个相当重量级的解决方案。您是否考虑过使用 Jetty 执行此操作?
This might be possible if you signed all the jars correctly. But, it seems like this is quite a heavyweight solution. Have you considered doing this with Jetty?