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 |
||||||||
|
|
|
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. |
||
|
|
|
|
JavaService is LGPL. It is very easy and stable. Highly recommended. |
|||
|
|
|
|
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. |
||
|
|
|
|
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 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 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 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 |
|||
|
|
|
|
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). |
|||
|
|
