在 JBOSS 中部署 JAR
我有一个 jar 文件(用于 java 类)以及我的项目的一些关联文件。它基本上是一个基于客户端/服务器的应用程序,但不是基于网络的。我如何在机器(24*7)中运行这个程序? 如何将其部署在任何应用程序服务器中?
Im having a jar file(for java classes) with some associated files of my project.Its bacially a client/server based application,but not web based.How can I run this program in a machine(24*7)?
How can i deploy it in any application server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要 JBoss 或任何其他应用程序服务器。只要启动它:
它就会 24/7 运行。要在后台启动它,请添加“&”到它。如果您寻找自动启动它的方法,您可以使用 init.d 系统(如果在 unix/linux 上)。
如果您无论如何都想使用应用程序服务器,只需将您的 jar 包到一个 war 文件中并部署它即可。这可以使用 Ant's War Task 或直接从 IDE 来完成。
You don't need JBoss or any other application server. Just start it:
and it will run 24/7. To start it in the background, add " &" to it. If you look for ways to start it automatically, with the system your could use init.d (if on unix/linux).
If you want to use an application server anyway, just wrap your jar in a war file and deploy it. This can be done using Ant's War Task or maybe directly from your IDE.