Tagged Questions
5
votes
4answers
529 views
Is there a JVM daemon?
I'm curious, is there a JVM which runs as an OS daemon, and forks when a new process should be started in it ( i.e. like init, or zygote process on Android )? If no, why not? I am not talking about a ...
1
vote
2answers
199 views
How to log the output of a daemon application?
I have a Java program running as a daemon (thanks to YAJSW, a wrapper for java).
The thing is that this java application writes several lines of console text, (simply imagine a Hello World App). If I ...