模板引擎thymeleaf和freemarker

模板引擎thymeleaf和freemarker,第1张

模板引擎thymeleaf和freemarker
  • 模板引擎
    模板引擎是为了将业务数据和页面相互分离,后台返回的数据生成指定格式的文档,可以生成html页面
    -freemarker
    这个是一个模板引擎,用来生成html页面的工具,一个后台通过返回数据,传递给模板引擎,引擎通过整合后台数据和html标签来生成 html页面,
    使用java语言编写的模板引擎,作用在表现层的实现技,可以生成jsp,xml,html
 
        
        
            org.springframework.boot
            spring-boot-starter-freemarker
        
  • thymeleaf
    springboot默认支持thymeleaf,是标准模板
1 依赖
 
            org.springframework.boot
            spring-boot-starter-thymeleaf
        
2 配置文件
 thymeleaf:
        mode: HTML5 #配置视图模板类型
        #prefix= 默认前缀 classpath:/templates
        #suffix = .thml 是后缀
        encoding: UTF-8 #配置编码
        #servlet:
            #content-type: 配置响应类型的
        cache: false #配置页面缓存

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4873760.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-11
下一篇 2022-11-11

发表评论

登录后才能评论

评论列表(0条)

保存