vote up 13 vote down star
5

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.

flag

10 Answers

vote up 7 vote down check

I've had some luck with the Java Service Wrapper

link|flag
Java Service Wrapper looks very useful. But I had a look at the feature list. You will just need to be aware that community version is not licensed for use on the server. – bmatthews68 Sep 16 '08 at 1:36
That could be a problem. It was a few years ago I used it. Guess they decided to charge. – sblundy Sep 16 '08 at 2:06
This wrapper is used by a lot of open source projects, include several on Jakarta Apache, such as ActiveMQ. – Todd Sep 16 '08 at 2:36
What I like about the wrapper is that it can be configured to restart the JVM if it locks up. – Andrew Swan Sep 16 '08 at 12:46
vote up 4 vote down

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.

link|flag
vote up 2 vote down

Another good option is FireDaemon. It's used by some big shops like NASA, IBM, etc; see their web site for a full list.

link|flag
vote up 2 vote down

JavaService is LGPL. It is very easy and stable. Highly recommended.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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!

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.