jsvc

Wrapper to launch Java applications as daemons

brewmacoslinux
Try with needOr install directly
Source

About

Wrapper to launch Java applications as daemons

Commands

jsvc

Examples

Start a Java application as a daemon with specific class and classpath$ jsvc -cp /path/to/lib/* com.example.MyApplication
Run Java daemon with custom JVM options and pidfile$ jsvc -Xmx512m -Xms256m -pidfile /var/run/app.pid -cp /opt/myapp/lib/* com.example.Service
Stop a running daemon using its pidfile$ jsvc -pidfile /var/run/app.pid -stop com.example.Service