Java program as a Windows service

I have a Java program that should run as a service. How can I do this easily?

+5
source share
2 answers

Good explanations in this article - including a pointer to Java Service Wrapperan open source component that simplifies it.

+7
source

Write a service in C / C ++ and load the JVM. Or you can use some tool that binds your Java application to the service.

+2
source

All Articles