Java 守护进程部署基础架构
有没有Java守护进程的部署平台?我们有 glassfish、geronimo 等用于 Web 应用程序部署,但如果我有一个基于 Spring 的简单应用程序正在处理来自 ActiveMQ 或类似内容的消息。我应该在哪里部署它?
Is there any deployment platforms for Java daemons? We have glassfish, geronimo etc. for web-application deployment, but if I have simple Spring based application which is processing messages from ActiveMQ or something like that. Where I should deploy that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能正在寻找类似 Java Service Wrapper 的东西。几年前,我将它用于一组需要看门狗以及启动、停止和重新启动操作的服务。您可以执行此操作以及其他一些操作:
使得可以将 Java 应用程序安装为 Windows 服务或 Unix 系统上的守护进程。
如果您使用 Maven 构建项目,则有一个应用程序组装器 Maven 插件 您可以使用。
You probably are looking for something like Java Service Wrapper. I used it a couple of years ago for a group of services that needed a watchdog and start, stop and restart operations. You can do that and a few things more:
makes it possible to install a Java Application as a Windows Service or a daemon process on Unix systems.
If you build your project with Maven, there is a Application Assembler Maven Plugin that you can use.
使用 Spring 创建一个简单的守护进程
Creating a simple daemon process with Spring