Java process control is notoriously bad - primarily due to inadequate support by the Java VM/JDK classes (e.g. java.lang.Process).

I am wondering, are there any good open source libraries out there that are reliable.

The requirements would be:

  1. OSS
  2. Start/Stop processes
  3. Manage STDIN and STDOUT
  4. cross platform (at least Linux, Windows, Solaris, HP, and IBM in that order)
  5. (optional) restartable
  6. (desirable) mature
link|improve this question
feedback

3 Answers

up vote 2 down vote accepted

Java Service Wrapper might be what you're looking for. It's cross-platform, can be used to start things as a Windows service, capture IO, and generally completely manage any java app. It's very light weight and well designed. Atlassian uses it to wrap their products (Jira, Bamboo, etc), so it's battle tested.

link|improve this answer
2  
for service management it's fine. but it's hardly a library that can be used for easy process control. also, it's not quite OSS. – Omry Aug 24 '09 at 16:25
@Omry JSW has a very good process control library (wrapper.tanukisoftware.com/doc/english/child-exec.html), the problem is that it isn't OSS. – jnorris Aug 27 '10 at 22:32
feedback

How about Apache Commons Exec?

link|improve this answer
Good tip - good tutorial, too! commons.apache.org/exec/tutorial.html – grrussel Aug 3 '11 at 21:42
feedback

One more requirement... cross platform support for killing of an orphaned process. With java.lang.Process (and Apache Commons Exec), there is no way to kill external processes when the Java application does a hard stop (kill -9). I'd really like to find a library that can handle the problem better.

One solution may be to store PIDs in some resource on disk, and then kill the processes on restart of the Java application. Of course, this would be platform dependent, so good a cross platform library would be fantastic.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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