Compound configuration in intellij

I have several applications. Each of them is deployed on its own application server. This is done so because it minimizes the time for redeploying each application when changes are made only to that application. This is because only one application server with one application restarts, which takes less time.

In any case, I need to start all these application servers in a specific order and in debug mode. Intellij IDEA has a complex configuration that allows you to run multiple applications. But it has 2 significant drawbacks: it does not allow you to specify the order in which applications are launched and, it seems, does not allow you to run them in debug mode. So is it possible to somehow achieve these goals?

+6
source share
1 answer

The multirun plugin is the best implementation for this. You can determine the execution order and, more importantly, debug it .

https://github.com/rkhmelyuk/multirun

+9
source

All Articles