Issue
I have three springboot app in a visual Studio code workspace. All three configured to run on unique port.Is it possible to start all three springboot service on the same workspace? Earlier I have seen options where one can select the select the terminals for each process. Anysuggestion would be of great help.
Solution
You can create a launch.json
and compound the three projects.
Create a
launch.json
, which should generate configurations automatically.Add
compound
args. Compound configurations list the names of the above three launch configuration."compounds": [ { "name": "Compound", "configurations": ["Launch Demo1Application","Launch Demo2Application","Launch DemoApplication"] } ]
- Select
compound
then debug.
Answered By - Molly Wang-MSFT
Answer Checked By - David Goodson (JavaFixing Volunteer)