当前位置:
首页 > Python基础教程 >
-
SpringBoot 集成FreeMarker
SpringBoot官方不推荐使用jsp,因为jsp不好发挥SpringBoot的特性。官方推荐使用模板引擎代替jsp,现在很多公司都使用FreeMarker来作为SpringBoot的视图。
SpringBoot对动态页面的支持很好,为多种模板引擎提供了默认配置,常用的有:
- Thymeleaf
- FreeMarker
- Velocity
- Groovy
SpringBoot集成FreeMarker
(1)在pom.xml中添加依赖
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-freemarker</artifactId> </dependency>
(2)在springboot的配置文件application.proeprties中配置freeamarker
#启用freemark。默认为false——不使用freemarker。
spring.freemarker.enabled=true
#指定freemarker模板文件的后缀
spring.freemarker.suffix=.ftl
这一步是必须的,但很多教程上都没写。
(3)在controller中转发到freemarker页面,并传递数据
@Controller public class UserController { @RequestMapping("/user") public String handler(Model model){ model.addAttribute("username", "chy"); return "user/user_info"; } }
@RestController用来传回json数据,一般用来写与前端交互的接口。普通的controller用@Controller就行了。
(4)在reosurces下新建文件夹templates,templates下新建.ftl文件(freemark文件),使用controller传来的数据。
springboot默认模板存放路径是resources\templates,由于user有多个视图,我们在templates下新建文件夹user来存放。
user下新建html文件user_info.html,Shif+F6重命名为.ftl文件。
<body> <#--取数据--> ${username} </body>
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式