在 JBOSS 中部署 JAR

发布于 2024-11-19 16:56:35 字数 113 浏览 0 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

゛清羽墨安 2024-11-26 16:56:35

您不需要 JBoss 或任何其他应用程序服务器。只要启动它:

java -jar yourfile.jar

它就会 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:

java -jar yourfile.jar

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文