java流程引擎模板_SpringBoot整合模板引擎过程代码实例

一、SpringBoot整合freemarker:

1.引入freemarker模板依赖:

org.springframework.boot

spring-boot-starter-freemarker

1.5.9.RELEASE

2.配置application.properties:

#freemarker 静态资源配置

#设定ftl文件路径

spring.freemarker.template-loader-path=classpath:/templates

#关闭缓存,还是刷新,上线生产环境需要改为true

spring.freemarker.cache=false

spring.freemarker.charset=utf-8

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.request-context-attribute=request

spring.freemarker.suffix=.ftl

3.在resources目录下建个目录叫templates,在这个目录下新建一个以.ftl结尾的文件,并且将html代码复制进去,在controller层返回这个视图

二、SpringBoot整合thymeleaf

1.引入thymeleaf模板依赖

org.springframework.boot

spring-boot-starter-thymeleaf

1.5.9.RELEASE

2.配置application.properties:

#thymeleaf静态资源配置

spring.thymeleaf.prefix=classpath:/templates/

spring.thymeleaf.suffix=.html

spring.thymeleaf.mode=HTML5

spring.thymeleaf.encoding=UTF-8

spring.thymeleaf.content-type=text/html

#关闭缓存,即时刷新,上线生产环境需要改为true

spring.thymeleaf.cache=true

3.在resoureces下新建个目录templates在里面编写html文件,具体的thymeleaf标签语法这里就不做介绍了。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值