我使用STS来构建网络服务器。
我用这段代码将依赖项放在pom.xml中
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<version>2.0.5.RELEASE</version>
<optional>true</optional>
<scope>runtime</scope>
</dependency>
当我使用IDE(Spring Tool Suite)运行Web服务器时,如果将在浏览器上显示的“ html”文件发生更改,它将自动应用更改。
但是如果我以独立方式运行它('mvnw spring-boot:run'),它将无法正常工作。
如何解决此问题?
当前使用Springframework.boot 2.0.4.RELEASE
答案 0 :(得分:1)
在application.properties中设置:
spring.devtools.restart.exclude=
默认值为(也许您的html文件在此处):
spring.devtools.restart.exclude=META-INF/maven/**,META-INF/resources/**,resources/**,static/**,public/**,templates/**,**/*Test.class,**/*Tests.class,git.properties