我将Spring Boot与Gradle结合使用,并添加了Devtools插件。我的应用程序正在src / main / resources中创建文件,所以我不希望更改后重新启动它。我已经在应用程序配置文件中尝试了以下设置:
spring.devtools.restart.exclude= src/main/resources
spring.devtools.restart.exclude= resources
spring.devtools.restart.exclude= resources/**
spring.devtools.restart.exclude= src/main/resources/**
,但是没有一个起作用。
如何配置spring boot devtools以忽略资源文件夹中更改的文件?