Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'd like to install a Java application as windows service. I did so successfully a couple of years ago using this Java Service rapper. Unfortunately, it seems like this tool is not in development anymore and thus no Windows 7 and 64 bit versions are available. I need to install my Java application on Windows 7 and XP machines.

Does anyone know a good alternative?

Edit: I need this for commercial use; the suggested Java Service Wrapper from Tanuki is too expensive.

share|improve this question
3  
A few ideas in here: stackoverflow.com/questions/68113/… – assylias Feb 13 '12 at 14:21
1  
you might want to check any of the service wrappers that can launch win32 application, you can test launching JVM with arguments to your application, however they might not be as granular as wrapper explicitly written for java. – Johnydep Feb 13 '12 at 15:08

5 Answers

I have used this with great success and ease of use.

There are community packages (free) and professional packages (licence).

share|improve this answer

Some time ago I used the tanuki project and we were very happy with it. I believe is one of the most popular ones.

There is also YAJSW that is based on tanuki (as I understand ) with a LGPL licence

share|improve this answer

I have recently used Java Service Wrapper from Tanukisoftware and it works perfectly on windows 7. Also the tool is pretty handy as it provides pretty extensive integration mechanism from simple jar execution to shutdown hook functionality as well.

For normal use, you can use their Community License which falls under GPL v2.0, however keep in mind if your intended use is on server, you might have to double check licensing options.

Also windows resource kit includes a tool called servany.exe which i successfully used on Windows Xp to start a jar file as a service by lanuching java.exe with arguments to my jar file, however since windows 7 this somehow does not work.

You might want to do a little research since i have read some forums about people still affirming that it works.

share|improve this answer

AlwaysUp is a commercial alternative that supports Windows 7 and XP. This step-by-step tutorial shows you how to setup a java application as a service.

share|improve this answer
it might not be an ideal choice if you want to setup the whole process from within java itself, since AlwaysUP does not allow any command-line switches, or does it? – Johnydep Feb 13 '12 at 15:01
The "regular" AlwaysUp is GUI based but there are command line tools for doing that sort of thing – CoreTech Feb 13 '12 at 16:01
up vote 0 down vote accepted

I'm now using WinRun4J - a really nice, lean tool that is easy to configure and handle and usable in commercial applications. Many thanks to assylias, whose comment pointed my in the right direction.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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