Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Running multiple spring boot microservices with Gradle

I am working on a Spring Boot application built using Gradle. We have multiple microservices as subprojects for this application.

I'm trying to run the application and all microservices using Spring Boot's bootRun task from the command line with single bootRun command.

Similarly, we would like to run some integration tests with the application and all microservices with single test command.

I appreciate for any help or pointing me some documentation.

Thank you in advance.

like image 905
turgos Avatar asked Oct 27 '15 18:10

turgos


1 Answers

We decided to use gradle --parallel option.

like image 198
turgos Avatar answered Oct 20 '22 12:10

turgos