Spring Boot 整合 FreeMarket

自闭症网瘾萝莉.ら 提交于 2019-12-03 18:54:54

官方Demo spring-boot-sample-web-freemarker

依赖的模块

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

默认加载类路径templates目录下的文件
可以在application.properties中通过属性spring.freemarker.template-loader-path自定义模版文件所在的目录

spring.freemarker.template-loader-path=classpath:/activiti/
//默认前缀为空
spring.freemarker.prefix=
//默认后缀为.ftl
spring.freemarker.suffix=.ftl
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!