springboot25-关闭缓存页面1

1、写controller

@Controller
public class UserController {

    @RequestMapping("/message")
    public String message(Model model){
        model.addAttribute("message", "SpringBoot");

        return "message";
    }
}

2、编写html模板引擎

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
    <h2 th:text="${message}">xxxxxx</h2>
</body>
</html>

3、编写配置文件(可选)

#设置thymeleaf模板引擎的前后缀:可选项
spring.thymeleaf.prefix=classpath:/templates/
spring.mvc.view.suffix=.html

【希望修改页面后,不用重启服务,只需刷新就可以,就必须关闭缓存】

4、编写配置文件,关闭缓存

#设置thymeleaf模板引擎的缓存,设置为false关闭,默认为true开启
spring.thymeleaf.cache=false

5、修改配置

posted @ 2021-09-16 16:34  不是孩子了  阅读(483)  评论(0编辑  收藏  举报