Reputation: 9945
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?
Upvotes: 9
Views: 1046
Reputation: 2568
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:
If you build your project with Maven, there is a Application Assembler Maven Plugin that you can use.
Upvotes: 3