diff options
Diffstat (limited to 'spring-boot/06-form-handling-with-thymeleaf/pom.xml')
| -rw-r--r-- | spring-boot/06-form-handling-with-thymeleaf/pom.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/spring-boot/06-form-handling-with-thymeleaf/pom.xml b/spring-boot/06-form-handling-with-thymeleaf/pom.xml index c486563..6708292 100644 --- a/spring-boot/06-form-handling-with-thymeleaf/pom.xml +++ b/spring-boot/06-form-handling-with-thymeleaf/pom.xml @@ -23,6 +23,14 @@ <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-validation</artifactId> </dependency> + + <!--This is to automatically reload web pages during development --> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-devtools</artifactId> + <optional>true</optional> + </dependency> + </dependencies> </project>
\ No newline at end of file |
