vote up 8 vote down star
5

Howdy

I am looking for the best way to make my desktop java program run in the background (daemon/service?) across most platforms (Windows, Mac OS, Linux [Ubuntu in particular]).

By "best way" I am hoping to find a way that will:

1) require a minimum amount of platform-specific code. 2) not require the user to do anything a general computer user couldn't/wouldn't do 3) not be a resource hog.

I understand that my requirements may be unrealistic but I am hoping there is some sort of "best practice" for this type of situation.

Any ideas on how to go forward?

Thanks.

flag

which is it - a desktop program, or a daemon/service? It can't really be both. – Alnitak Nov 28 '08 at 19:44
1  
Ideally, the program would mainly be running as a daemon/service...and clicking on its icon in the status bar would show a window to change settings,stop the daemon/service, etc...Currently, the app is only a swing desktop app. – Jack Nov 28 '08 at 20:04

4 Answers

vote up 4 vote down check

You can use the SystemTray classs and install your app as any other in the default platform.

For windows it could be an scheduled task that run at startup. For Linux and OSX I don't know ( besides crontab wich is somehow too technical ) but I'm pretty sure thay both have a way to do the same thing easily.

Unfortunately (as of today) Apple hasn't fnished the 1.6 port.

It won't be a real demon, but an app like Google Desktop.

I've heard Quartz is a good option. But I've never used it.

link|flag
vote up 0 vote down

Check out JDIC, the Java Desktop Integration Components project. It supports desktop integration like system tray (or equivalent) with a cross-platform API.

Others have mentioned Quartz, which is an enterprise job scheduler. It can be lightweight, depending on the jobs that are scheduled, but it doesn't have any features that are inherently desktop-oriented. On the contrary, many of its features depend on enterprise support like a relational database. If your application is primarily scheduling tasks, a headless Quartz service executing jobs, with a desktop client to interact with the service is reasonable approach.

link|flag
vote up 6 vote down

You can turn any Java program into a service/daemon using the Java Service Wrapper. It is used by multiple OSS projects, and ships as part of the Nexus Maven Repository Manager so that it can be installed as a service out of the box. To use it, you, the author, just need to create a configuration file and then run a simple batch file to create the service on Windows or copy an init script to the correct runlevel on Linux.

link|flag
vote up 3 vote down

You can run a Java application as a service (Windows) or daemon (Linux) using the Apache Commons daemon code.

Structure

Daemon is made of 2 parts. One written in C that makes the interface to the operating system and the other in Java that provides the Daemon API.

Platforms

Daemon is made of 2 parts. One written in C that makes the interface to the operating system and the other in Java that provides the Daemon API.

Java code

You have to write a Class (MyClass) that implements the following methods:

* void load(String[] arguments): Here open the configuration files, create the trace file, create the ServerSockets, the Threads
* void start(): Start the Thread, accept incoming connections
* void stop(): Inform the Thread to live the run(), close the ServerSockets
* void destroy(): Destroy any object created in init()
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.