我是靠谱客的博主 天真樱桃,最近开发中收集的这篇文章主要介绍springboot整合freemarker,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

前提:

开发工具:idea

框架:spring boot、maven

1、pom文件添加依赖

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

2、新建spring web项目,会自动生成application.properties.

使用application.properties配置文件之后,spring boot启动时,会自动把配置信息读取到spring容器中,并覆盖spring boot的默认配置。

3、在配置文件中,设置以下两个参数


#设定ftl文件路径
spring.freemarker.template-loader-path=classpath:/templates
#设定静态文件路径,js,css
spring.mvc.static-path-pattern=/static/**

controller跳转页面如下:
templates/action/list.ftl页面

 

 

 

 

 

转载于:https://www.cnblogs.com/amunamuna/p/6400273.html

最后

以上就是天真樱桃为你收集整理的springboot整合freemarker的全部内容,希望文章能够帮你解决springboot整合freemarker所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(50)

评论列表共有 0 条评论

立即
投稿
返回
顶部