Java daemon deployment infrastructure -


Is there a deployment platform for Java daemon? We have glassfish, Geronimo etc. for web-application deployment, but if I have a spring-based simple application that is processing messages from Active MQ or something where I should deploy it?

You are probably looking for something. I used it two years ago for a group of services that needed to be monitored and to start, stop and restart the operation. You can do a few more things on it:

  • Run a Java application as a Windows service or Unix daemon: Install Java applications as Windows Makes it possible to service or a daemon process on UNIX systems.
  • Standard, Out of The Box scripting: provides scripts to run on Windows and Unix
  • On Demand restarts:
  • / Strong> Your application can request the restart of its own JVM.
  • Flexible configuration: The configuration and application for JVM can be centralized in a text file is.
  • Logging: While the Java service cover does not try to change any logging tool, it provides several properties to configure how "stdout" and "stderr "The output is handled by JVM console. It can be logged in any combination of output console, a file or "event log" (Windows) or "syslog" (unix).

If you build your project with Maven, then there is an experiment you can use.


Comments