SpringBoot整合模板引擎freemarker和thymeleaf

        1、Freemarker 
            FreeMarker Template Language(FTL)  文件一般保存为 xxx.ftl
            严格依赖MVC模式,不依赖Servlet容器(不占用JVM内存)
            内建函数

        2、Thymeleaf (主推)
            轻量级的模板引擎(负责逻辑业务的不推荐,解析DOM或者XML会占用多的内存)
            可以直接在浏览器中打开且正确显示模板页面

            直接是html结尾,直接编辑

整合模板引擎freemarker

    1、Freemarker相关maven依赖
        
       
            org.springframework.boot
            spring-boot-starter-freemarker
       

    2、Freemarker基础配置
        # 是否开启thymeleaf缓存,本地为false,生产建议为true
        spring.freemarker.cache=false

        spring.freemarker.charset=UTF-8
        spring.freemarker.allow-request-override=false
        spring.freemarker.check-template-location=true
        
        #类型
        spring.freemarker.content-type=text/html

        spring.freemarker.expose-request-attributes=true
        spring.freemarker.expose-session-attributes=true
        
        #文件后缀
        spring.freemarker.suffix=.ftl
        #路径
        spring.freemarker.template-loader-path=classpath:/templates/
        

    3、建立文件夹
        1)src/main/resources/templates/fm/user/
        2)建立一个index.ftl
        3)user文件夹下面建立一个user.html

 

SpringBoot整合模板引擎freemarker和thymeleaf_第1张图片

 

SpringBoot整合模板引擎freemarker和thymeleaf_第2张图片

 浏览器输出结果

SpringBoot整合模板引擎freemarker和thymeleaf_第3张图片

 

整合模板引擎thymeleaf

1、thymeleaf相关maven依赖
            
                   org.springframework.boot
                   spring-boot-starter-thymeleaf
            

    2、thymeleaf基础配置

        #开发时关闭缓存,不然没法看到实时页面
        spring.thymeleaf.cache=false
        spring.thymeleaf.mode=HTML5
        #前缀
        spring.thymeleaf.prefix=classpath:/templates/tl/
        #编码
        spring.thymeleaf.encoding=UTF-8
        #类型
        spring.thymeleaf.content-type=text/html
        #名称的后缀
        spring.thymeleaf.suffix=.html

    3、建立文件夹
        1)src/main/resources/templates/tl/
        2)建立一个index.html
 SpringBoot整合模板引擎freemarker和thymeleaf_第4张图片

 

SpringBoot整合模板引擎freemarker和thymeleaf_第5张图片

若果要在浏览器上直接访问模板下的静态页面,则要在配置文件application.properties里面加上访问的路径

spring.resources.static-locations=classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/,classpath:/test/,file:${web.upload-path},classpath:/templates/

你可能感兴趣的:(Springboot2.x)