1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| spring:
| profiles:
| active: dev
|
| # 视频测试界面引入 2022-09-26
| freemarker:
| # 模板后缀名
| suffix: .ftl
| # 文档类型
| content-type: text/html
| # 页面编码
| charset: UTF-8
| # 页面缓存
| cache: false
| # 模板路径
| template-loader-path: classpath:/templates/
| settings:
| # 如果变量为null,转化为空字符串
| classic_compatible: true
| # 数字格式不用逗号隔开
| number_format: 0.##
| datetime_format: yyyy-MM-dd HH:mm:ss
| # 去掉多余的空格,非常有用
| whitespace_stripping: true
|
|