某些资源没有必要要在更改时触发重启。例如,Thymeleaf模板可以就地编辑,默认情况下,更改/META-INF/maven
、/META-INF/resources
、/resources
、/static
、/public
或/templates
中的资源不会触发重启,但会触发实时重新加载。如果您想自定义哪些资源改动而不会触发重启,可以使用spring.devtools.restart.exclude
属性。例如,仅排除/static
和/public
可以如下设置:
spring.devtools.restart.exclude=static/**,public/**
如果想保留那些默认值并添加其他排除项,请改为使用
spring.devtools.restart.additional-exclude
属性。