I have created a jar file in java , the problem is when ever the system gets restart i need to manually run the jar file so i have decided to convert my jar file to a windows service . if anyone knows please help me out
Asked
Active
Viewed 1,606 times
-2
-
1Pick one there: http://stackoverflow.com/questions/68113/how-to-create-a-windows-service-from-java-app – StephaneM Apr 09 '14 at 13:24
1 Answers
0
The Java Service Wrapper makes it possible to install a Java Application
as a Windows Service
. Likewise, the scripts shipped with the Wrapper
also make it very easy to install a Java Applicatio
n as a Daemon
process on UNIX
systems.
The Wrapper
correctly handles "user's log outs" under Windows
, service dependencies, and the ability to run services which interact with the desktop.
Take a look at this

Nidhish Krishnan
- 20,593
- 6
- 63
- 76