Reputation: 851
To run a Spring Boot application, there are two gradle tasks:
gradle bootRun
gradle run
Both tasks can be used to run the Spring Boot application, what are the main differences between these tasks?
Upvotes: 63
Views: 65383
Reputation: 1151
gradle bootRun
- standard gradle'run' task with additional Spring Boot features. e.g. you can type: bootRun {addResources = false}
check githubgradle run
standard gradle 'run' taskUpvotes: 50