Is it possible to run multiple applications in IntelliJ with just one press of a button?

前端 未结 7 1354
被撕碎了的回忆
被撕碎了的回忆 2020-12-24 04:21

It\'s not really a big problem, but I\'d like to make my life a bit easier. Is there a way to run multiple applications with just one press of a button? Say, I have appA, ap

相关标签:
7条回答
  • 2020-12-24 04:59

    I think this has been possible since version 15. You simply create a Run/Debug Configuration of type 'Compound', and select the configurations you want to run, so:

    1. Ensure you have previously set up run configurations for the various applications (or other run configurations) that you want to run.
    2. Click on the 'Run' menu
    3. Click 'Edit Configurations'
    4. Click the green '+' icon (top-left of the window)
    5. Click 'Compound'
    6. In the right-hand pane, enter a meaningful name for your group, then click the green '+' icon (the one in the right-hand pane, not the top-left of the window)
    7. Select one of the run configurations
    8. Repeat 5 and 6 for all the configurations you want to run in a single click
    9. Hit OK
    10. Select your newly-created compound configuration in the drop-down in the menu bar
    11. Hit the run button (note that you don't appear to be able start all the applications in debug mode, if you want to do that, you'll need to do so individually)
    12. Watch all your applications start, one-by-one. Revel in your newly discovered free time

    2 drawbacks:

    1. As CashIsClay points out below, you can't explicitly change the order that your configurations run in; they run in alphabetical order. I'm not sure that this is a big restriction though, I'd want my applications to be able to start in any order for resilience in production environments. Of course, a non-terrible workaround would be to name your run configurations something like: '1. Foo'; '2. Bar', if it's essential for Foo to run before Bar starts.
    2. You can only start in 'run' mode, not 'debug'. I haven't tried the MultiRun plugin, but if you always start everything in debug mode, that might be the better option.
    0 讨论(0)
  • 2020-12-24 05:02

    There is no such feature yet, please vote:

    • IDEA-94341 Launch Multiple "Run/Debug Configurations" At Once
    0 讨论(0)
  • 2020-12-24 05:09

    There seems to be a Multirun plugin for IDEA:

    Allows to run multiple run configurations at once: group multiple run configurations and start them in a single click. Not only application and test run configurations can be grouped, but other Multirun configurations can be organized into single run configuration.

    0 讨论(0)
  • 2020-12-24 05:10

    In the IntelliJ IDEA 2018.3 (Community Edition) version, you can do this: Run -> Edit Configurations... -> Checked Allow running in parallel, then you can start multiple main classes.

    0 讨论(0)
  • 2020-12-24 05:12

    Select the Written program(java/Scala) --> right click --> Edit --> Select Allow parallel runs check boxenter image description here

    0 讨论(0)
  • 2020-12-24 05:16

    Edit run configuration, check the allow run parallel checkbox.

    0 讨论(0)
提交回复
热议问题