I've just inherited a java application that needs to be installed as a service on XP and vista. It's been about 8 years since I've used windows in any form and I've never had to create a service, let alone from something like a java app (I've got a jar for the app and a single dependency jar - log4j). What is the magic necessary to make this run as a service? I've got the source, so code modifications, though preferably avoided, are possible.
|
|
I've had some luck with the Java Service Wrapper |
|||||||||||||||
|
|
Apache Commons Daemon is a good alternative. It has Procrun for windows services, and Jsvc for unix daemons. It uses less restrictive Apache license, and Apache Tomcat uses it as a part of itself to run on Windows and Linux! To get it work is a bit tricky, but there is an exhaustive article with working example. Besides that, you may look at the bin\service.bat in Apache Tomcat to get an idea how to setup the service. In Tomcat they rename the Procrun binaries (prunsrv.exe -> tomcat6.exe, prunmgr.exe -> tomcat6w.exe). Something I struggled with using Procrun, your start and stop methods must accept the parameters (String[] argv). For example "start(String[] argv)" and "stop(String[] argv)" would work, but "start()" and "stop()" would cause errors. If you can't modify those calls, consider making a bootstrapper class that can massage those calls to fit your needs. |
|||||||||||
|
|
With Apache Commons Daemon you can now have a custom executable name and icon! You can also get a custom Windows tray monitor with your own name and icon! I now have my service running with my own name and icon (prunsrv.exe), and the system tray monitor (prunmgr.exe) also has my own custom name and icon!
|
|||||||||
|
|
Use "winsw" - http://kenai.com/projects/winsw - which was written for Glassfish v3 but works well with Java programs in general. Require .NET runtime installed. |
|||||
|
|
A pretty good comparison of different solutions is available at : http://yajsw.sourceforge.net/#mozTocId284533 Personally like launch4j |
||||
|
|
|
Yet another answer is Yet Another Java Service Wrapper, this seems like a good alternative to Java Service Wrapper as has better licensing. It is also intended to be easy to move from JSW to YAJSW. Certainly for me, brand new to windows servers and trying to get a Java app running as a service, it was very easy to use. Some others I found, but didn't end up using:
|
||||
|
|
|
JavaService is LGPL. It is very easy and stable. Highly recommended. |
||||
|
|
|
One more option is WinRun4J. This is a configurable java launcher that doubles as a windows service host (both 32 and 64 bit versions). It is open source and there are no restrictions on its use. (full disclosure: I work on this project). |
|||||||
|
|
I have write about several options available for that, please have a read to http://hofmanndavid.blogspot.com/2008/11/run-java-application-as-windows.html |
||||
|
|
|
I am currently requiring this to run an Eclipse-based application but I need to set some variables first that is local to that application. sc.exe will only allow executables but not scripts so I turned to autoexnt.exe which is part of the Windows 2003 resource kit. It restricts the service to a single batch file but I only need one batch script to be converted into a service. ciao! |
|||
|
|
|
I think the Java Service Wrapper works well. Note that there are three ways to integrate your application. It sounds like option 1 will work best for you given that you don't want to change the code. The configuration file can get a little crazy, but just remember that (for option 1) the program you're starting and for which you'll be specifying arguments, is their helper program, which will then start your program. They have an example configuration file for this. |
||||
|
|
|
Another good option is FireDaemon. It's used by some big shops like NASA, IBM, etc; see their web site for a full list. |
|||
|
|
|
I always just use sc.exe (see http://support.microsoft.com/kb/251192). It should be installed on XP from SP1, and if it's not in your flavor of Vista, you can download load it with the Vista resource kit. I haven't done anything too complicated with Java, but using either a fully qualified command line argument (x:\java.exe ....) or creating a script with Ant to include depencies and set parameters works fine for me. |
|||||
|
|
I didn't like the licensing for the Java Service Wrapper. I went with ActiveState Perl to write a service that does the work. I thought about writing a service in C#, but my time constraints were too tight. |
|||
|
|
|
I've used JavaService before with good success. It hasn't been updated in a couple of years, but was pretty rock solid back when I used it. |
|||
|
|