Spring boot配置静态资源不重启即时生效

2020-05-07T19:14:00

在项目中,用到了模板引擎,每次修改一个 html,要重启才生效,配置不重启也实时生效,可以提供开发效率

pom中直接引入依赖spring-boot-devtools

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-devtools</artifactId>
        <optional>true</optional>
    </dependency>

在automatically.properties中`开启application.properties开启页面热价值

#页面热加载
spring.thymeleaf.cache = true

点击File -> Settings -> Build-Execution-Deplyment -> Compiler,选中打勾 `Build project

当前页面是本站的「Baidu MIP」版。发表评论请点击:完整版 »