20.2.1 排除资源

某些资源的变化没必要触发重启,比如Thymeleaf模板可以随时编辑。默认情况下,位于/META-INF/maven/META-INF/resources/resources/static/public/templates下的资源变更不会触发重启,但会触发实时加载(live reload)。你可以使用spring.devtools.restart.exclude属性自定义这些排除规则,比如,为了只排除/static/public,你可以这样设置:

spring.devtools.restart.exclude=static/**,public/**

如果你想保留默认属性,并添加其他的排除规则,可以使用spring.devtools.restart.additional-exclude属性作为代替。

Last updated