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?
Is there any deployment platforms for Java daemons? We have glassfish, geronimo etc. for
Share
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.