fastcodejava
fastcodejava

Reputation: 41077

Java program as windows service

I have a java program which need to be run as a service. How do I do that easily?

Upvotes: 5

Views: 384

Answers (2)

Alex Martelli
Alex Martelli

Reputation: 881497

Good explanations in this article -- including the pointer to the Java Service Wrapper open-source component that makes it easy.

Upvotes: 7

Vijay Mathew
Vijay Mathew

Reputation: 27164

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

Upvotes: 2

Related Questions