共计 5129 个字符,预计需要花费 13 分钟才能阅读完成。
现在的开发现状比较流行前后端分离,使用 springboot 搭建一个提供 rest 接口的后端服务特别简单,引入 spring-boot-starter-web
依赖即可。那么在不分离的场景下,比如要开发一个后端使用的控制台,这时候可能并没有前端资源,由 javaer 自己来客串一把,我希望简单一点,前后端项目都集成在一起,一个 jar 包运行起来就完事,可以怎么搞呢?
本篇将介绍一下如何使用 springboot 集合 freemaker 引擎来搭建 web 应用
<!– more –>
I. 准备
Freemaker 是模板引擎,和 jsp 的作用差不多,对于它的不太清楚的同学可以参考一下官方文档
https://freemarker.apache.org/docs/index.html
1. 依赖
首先我们是需要一个 springboot 项目,基本的 pom 结构大都相似
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.4.RELEASE</version>
<relativePath/> <!-- lookup parent from update -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<spring-cloud.version>Finchley.RELEASE</spring-cloud.version>
<java.version>1.8</java.version>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</pluginManagement>
</build>
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
在这个项目中,我们主要需要引入两个依赖包,一个 web,一个 freemaker
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId>
</dependency>
</dependencies>
2. 配置参数
通常我们直接使用默认的 freemaker 参数配置即可,下面给出几个常用的
spring:
freemarker:
charset: UTF-8
# 本机测试时建议设置为 false,上线时设置为 true
cache: true
# 表示模板文件 (类 html 文件) 的后缀
suffix: .ftl
freemaker 的参数,主要对应的是org.springframework.boot.autoconfigure.freemarker.FreeMarkerProperties
II. 项目搭建演示
1. 项目结构
搭建一个 web 项目和我们之前的纯后端项目有点不一样,前端资源放在什么地方,依赖文件怎么处理都是有讲究的,下面是一个常规的项目结构
如上图,前端资源文件默认放在 resources 目录下,下面有两个目录
-
templates
:存放模板文件,可以理解为我们编写的 html,注意这个文件名不能有问题 -
static
: 存放静态资源文件,如 js,css,image 等
2. Rest 服务
我们这里提供了三个接口,主要是为了演示三种不同的数据绑定方式
@Controller
public class IndexController {@GetMapping(path = {"","/","/index"})
public ModelAndView index() {Map<String, Object> data = new HashMap<>(2);
data.put("name", "YiHui Freemarker");
data.put("now", LocalDateTime.now().toString());
return new ModelAndView("index", data);
}
/**
* 一般不建议直接使用 jdk 的 String.split 来分割字符串,内部实现是根据正则来处理的,虽然更强大,但在简单的场景下,性能开销更大
*/
private static String[] contents =
("绿蚁浮觞香泛泛,黄花共荐芳辰。\n 清霜天宇净无尘。\n 登高宜有赋,拈笔戏成文。\n 可奈园林摇落尽,悲秋意与谁论。\n 眼中相识几番新。\n 龙山高会处,落帽定何人。").split("\n");
private static Random random = new Random();
@GetMapping(path = "show1")
public String showOne(Model model) {model.addAttribute("title", "临江仙");
model.addAttribute("content", contents[random.nextInt(6)]);
return "show1";
}
@GetMapping(path = "show2")
public String showTow(Map<String, Object> data) {data.put("name", "Show2---->");
data.put("now", LocalDateTime.now().toString());
return "show2";
}
}
上面的三种 case 中
- 第一个是最好理解的,在创建
ModelAndView
时,传入 viewName 和数据 - 第二个是通过接口参数 Model,设置传递给 view 的数据
- 第三种则直接使用 Map 来传递数据
三个接口,对应的三个 html 文件,如下
index.ftl
<!DOCTYPE html>
<html lang="ch">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="SpringBoot FreeMaker"/>
<meta name="author" content="YiHui"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>YiHui's SpringBoot Demo</title>
<link rel="stylesheet" href="index.css"/>
</head>
<body>
<div>
<div class="title">hello world!</div>
<br/>
<div class="content"> 欢迎访问 ${name}</div>
<br/>
<div class="sign"> 当前时间: ${now}</div>
<br/>
<a href="show1"> 传参 2 测试 </a>
<a href="show2"> 传参 3 测试 </a>
</div>
</body>
</html>
show1.ftl
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="SpringBoot thymeleaf"/>
<meta name="author" content="YiHui"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>YiHui's SpringBoot Demo</title>
<link rel="stylesheet" href="index.css"/>
</head>
<body>
<div>
<div class="title">${title}</div>
<div class="content">${content}</div>
</div>
</body>
</html>
show2.ft
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="SpringBoot thymeleaf"/>
<meta name="author" content="YiHui"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>YiHui's SpringBoot Demo</title>
<link rel="stylesheet" href="index.css"/>
</head>
<body>
<div>
<div class="title">${name}</div>
<div class="content">${now}</div>
</div>
</body>
</html>
在上面的模板文件中,需要注意引用 css 样式文件,路径前面并没有 static,我们对应的 css 文件
index.css
.title {
color: #c00;
font-weight: normal;
font-size: 2em;
}
.content {
color: darkblue;
font-size: 1.2em;
}
.sign {
color: lightgray;
font-size: 0.8em;
font-style: italic;
}
3. 演示
启动项目后,可以看到三个页面的切换,模板中的数据根据后端的返回替换,特别是主页的时间,每次刷新都会随之改变
II. 其他
0. 项目 & 系列文章
- 190822-SpringBoot 系列教程 web 篇之 Beetl 环境搭建
- 190820-SpringBoot 系列教程 web 篇之 Thymeleaf 环境搭建
- 190816-SpringBoot 系列教程 web 篇之 Freemaker 环境搭建
- 工程:https://github.com/liuyueyi/spring-boot-demo
- 项目地址: https://github.com/liuyueyi/spring-boot-demo/blob/master/spring-boot/204-web-freemaker
1. 一灰灰 Blog
尽信书则不如,以上内容,纯属一家之言,因个人能力有限,难免有疏漏和错误之处,如发现 bug 或者有更好的建议,欢迎批评指正,不吝感激
下面一灰灰的个人博客,记录所有学习和工作中的博文,欢迎大家前去逛逛
- 一灰灰 Blog 个人博客 https://blog.hhui.top
- 一灰灰 Blog-Spring 专题博客 http://spring.hhui.top