1、引入
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
2、Spring Boot
开发者工具会在重启时排除掉如下目录:/META-INF/resources、/resources、/static、/public和
/templates
#排除重启的目录
spring.devtools.restart.exclude=/mapper/**,/xxx/
#禁用重启
spring.devtools.restart.enabled=false
#修改FoodDao.xml才会重启
spring.devtools.restart.trigger-file=FoodDao.xml