-2

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

  • 1
    Pick one there: http://stackoverflow.com/questions/68113/how-to-create-a-windows-service-from-java-app – StephaneM Apr 09 '14 at 13:24

1 Answers1

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 Application 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

Java Service Wrapper

Nidhish Krishnan
  • 19,751
  • 6
  • 56
  • 72