When developing, I run my own mainfrom Eclipse and everything is fine, but now I'm working on a web application (using the built-in Jetty), which requires several processes. Currently, there are three, and more to come.
I can start all of them with a few clicks of the start button, but it becomes inconvenient. I use it a lot since the new process stops the old one, so I always work with the current version. If I do not forget to start the process (or embarrass them and start once several times without missing another).
I could write a trivial class that runs all of them in the background, but then I will not write them my own eclipse console, and there was no way to debug them.
So I ask: is there a way to get Eclipse to start multiple processes with a single action?
source
share