SpringBoot集成FreeMarker
目录
- 更多分享:www.catbro.cn
-
简单记录Spring Boot 集成 FreeMarker的过程
-
jar包添加
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-freemarker</artifactId> </dependency>
-
开发期间,我们最好将FreeMarker的缓存关闭
-
在application.properties 中添加
spring.freemarker.cache = false
-
然后配置freemarker 文件路径
spring.freemarker.template-loader-path=classpath:/templates
-
配置静态资源路径
spring.mvc.static-path-pattern=/static/**
-
配置模版文件后缀
spring.freemarker.suffix=.ftl
-
配置文件内容类型
spring.freemarker.content-type=text/html