| Line 89: |
Line 89: |
| | </syntaxhighlight> | | </syntaxhighlight> |
| | | | |
| | + | == Dev Tools == |
| | + | Add at pom.xml<syntaxhighlight lang="xml"> |
| | + | .... |
| | + | <dependencies> |
| | + | .... |
| | + | <dependency> |
| | + | <groupId>org.springframework.boot</groupId> |
| | + | <artifactId>spring-boot-starter-devtools</artifactId> |
| | + | <scope>runtime</scope> |
| | + | </dependency> |
| | + | .... |
| | + | </dependencies> |
| | + | .... |
| | + | </syntaxhighlight><scope>runtime</scope> --> runs only at development |
| | + | |
| | + | Provides: |
| | + | |
| | + | * Develop server reloading on changes (pom.xml changes are not detected) |
| | | | |
| | ==Build== | | ==Build== |