I have an executable JAR file. Is it possible to create a Windows service of that JAR? Actually, I just want to run that on startup, but I don't want to place that JAR file in my startup folder, neither in the registry.
|
|
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) |
|||
|
|
|
With procrun you need to copy prunsrv to the application directory (download), and create an install.bat like this:
I presume to
Check the procrun manual and this tutorial for more information. |
|||
|
|
|
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. |
|||
|
|
|
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/ |
|||
|
|
|
We use the Tanuki Service Wrapper for that. It's very configurable. |
|||
|
|