I am having an executable jar file. Is it possible to create windows service of that jar? Actually i just want to run that on startup, but i don't want to place that jar in my startup folder, neither in registry.

link|improve this question

76% accept rate
Not in the registry also? Then why would you want it as a Service? – o.k.w Oct 24 '09 at 9:17
feedback

5 Answers

up vote 3 down vote accepted

This article should tell you all you need to know: "Running Java Applications as a Windows Service"

You can also use "Java Service Wrapper" (there is a community edition)

link|improve this answer
feedback

I've been experimenting with Apache Commons Daemon. It's supports windows (Procrun) and unix (Jsvc). Advanced Installer has a Java Service tutorial with an example project to download. If you get their javaservice.jar running as a windows service you can test it by using "telnet 4444". I used their example because my focus was on getting a java windows service running, not writing java.

link|improve this answer
feedback

Have a look at this Code Project article.

link|improve this answer
Though it is a manual process but i can go with that too, – Rakesh Juyal Oct 24 '09 at 9:40
feedback

Tanuki changed license of jsw some time ago, if I was to begin a project, I would use Yet Another Java Service Wrapper, http://yajsw.sourceforge.net/

link|improve this answer
feedback

We use the Tanuki Service Wrapper for that. It's very configurable.

link|improve this answer
site is down!! X( – Rakesh Juyal Oct 24 '09 at 9:39
feedback

Your Answer

 
or
required, but never shown

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