SpringBoot2.x系列教程(三十三)Thymeleaf手动渲染实例讲解

在前面章节中我们讲解了Thymeleaf作为前端页面展示时的基本使用。之前我们也提到,Thymeleaf除了可以用于Web前端,也可以用于基于模板其他场景。

比如在发送邮件时,想让邮件的内容和格式更统一些、根据模板生成一些静态的页面或文本等,都可以使用Thymeleaf。

下面我们以Thymeleaf模板来生成邮件内容为例进行讲解,该实例依旧基于SpringBoot来进行实现。

项目引入依赖如下:


    
        org.springframework.boot
        spring-boot-starter-thymeleaf
    
    
        org.springframework.boot
        spring-boot-starter-web
    

    
        org.projectlombok
        lombok
        true
    
    
        org.springframework.boot
        spring-boot-starter-test
        

你可能感兴趣的:(spring,boot,springboot,Thymeleaf)