Spring boot + Freemarker 整合

Posted leeindex

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring boot + Freemarker 整合相关的知识,希望对你有一定的参考价值。

1.首先要添加freemarker依赖包

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

2.在appliaction.yml加入freemarker配置文件

spring:
  freemarker:
request-context-attribute: req #req访问request
suffix: .html #后缀名
content-type: text/html
enabled: true
cache: false #缓存配置
template-loader-path: classpath:/templates/ #模板加载路径 按需配置
charset: UTF-8 #编码格式
settings:
number_format: ‘0.##‘ #数字格式化,无小数点

如果只是用mvc 则只要在appliaction.yml配置,默认访问templates路径下文件
mvc:
view:
prefix:
suffix: .htm






















以上是关于Spring boot + Freemarker 整合的主要内容,如果未能解决你的问题,请参考以下文章

Spring boot + Freemarker 整合

Spring Boot(24)——使用Freemarker视图

Spring Boot 初体验(10)使用使用freemarker

Spring boot Freemarker 获取ContextPath的方法

java spring boot- freemarker 配置 yml使用流程

从零开始的Spring Boot(4Spring Boot整合JSP和Freemarker)