I was wondering if it's possible to run a non-web java app in Heroku from within a web java app? Basically I want to execute a command to run the non-web app jar:
Calling something like this in Heroku for one off process:
Process proc = Runtime.getRuntime().exec("java -jar A.jar");