This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
I want to create an application that has to be run in background without any user interaction(like windows service) using java, it has to support for any platform.
Thanks in advance..
Regards,
Sanath
Sanath sajjan
Greenhorn
Joined: May 29, 2012
Posts: 10
posted
0
I need open source to create it. I think JRebel is not an Open source.
> Java Service wrapper will support only for windows platform
If you write an appropriate Java program (i.e. one without GUI or CUI user interaction), it will be possible to run it as a "service" or a "daemon" on the given platform. The program itself is one thing, the wrapping (a Windows service wrapper or a nohup starting script under Unix etc.) is another thing.
One could ask, what makes a Java program eligible to be a service or a daemon. And one could ask, how to turn it into a Windows service or a Unix daemon.
Sanath sajjan
Greenhorn
Joined: May 29, 2012
Posts: 10
posted
0
Hi evan,
what makes a Java program eligible to be a service or a daemon?
>As you said, the application should not interact with the user, the input data it has to pickup from the properties file maintained for that particular application.
how to turn it into a Windows service or a Unix daemon?
>Currently I know it for windows
>We can configure the service should automatic or manual. If it automatic means, when we start the system the service will starts, when the shut down the system the service will turned off.
>If it is manual means, the user has to manually start the service and stop the service manually in services.msc
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.
subject: Best way to create a windows service using java