devtools - grandhappy/springboot GitHub Wiki
devtools
devtools is a developer auto-compile tools,when you modify a java or html without compile you program. you do not restart your project.
how to import devtools?
- import spring-boot-devtools in your pom file
- config spring.devtools.start.enable param in your application.properties
how to test?
hello world
- modify return result to 'hello new world' in IndexController.java
- after 5s, curl http://127.0.0.1/index
hello new world