(7)模板引擎thymeleaf

 https://www.thymeleaf.org/

引入

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
 </dependency>

把静态文件放入templates文件夹下就可以自动渲染thymeleaf

 

    @RequestMapping("/ok")
    public String abc() {
        return "success";
    }

 

 

 

语法

 

posted @ 2020-07-13 19:20  富坚老贼  阅读(135)  评论(0编辑  收藏  举报