Running multiple spring boot microservices with Gradle

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

I am trying to run the application and all microservices using the Spring Boot bootRun task from the command line with one bootRun command.

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

I appreciate any help or point out some documents.

Thanks in advance.

+5
source share
1 answer

We decided to use the gradle --parallel option.

+4
source

Source: https://habr.com/ru/post/1234627/


All Articles