上一节中我们已经做了一个简单的 Hello world!应用,这一节我们来学习 Spring Boot 的 web 开发。以前做过 web 的童鞋都知道,一个 web 应用最常用的就是 MVC 的模式 jsp(视图层),Servlet(控制层),Dao(数据持久层),另外还会用到 单元测试,Json,Filte,Property,Log,数据库操作,热部署等一些相关的技术。这节我们就来看看在 Spring Boot 中是如何使用这些技术的。

单元测试

我们来为上节中的 hello world!应用进行单元测试。Spring Boot 的单元测试推荐使用 mockmvc 来进行,好处是不用启动服务即可进行测试。首先添加 test 的 maven 依赖, test 的依赖默认是存在的。

1
2
3
4
5
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>

src/test/ 下面新建包 controller ,然后新建类 HelloTest.java。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@RunWith(SpringRunner.class)
@SpringBootTest
public class HelloTest {
private MockMvc mvc;

@Before
public void setUp() throws Exception {
mvc = MockMvcBuilders.standaloneSetup(new HelloController()).build();
}

@Test
public void getHello() throws Exception {
mvc.perform(MockMvcRequestBuilders.get("/").accept(MediaType.APPLICATION_JSON))
.andExpect(status().isOk())
.andExpect(content().string(equalTo("hello world!")));
}
}

运行测试方法。

Jsp Or Thymeleaf

Spring Boot 推荐使用 Thymeleaf 来代替 Jsp,那么我们先来认识一下 Thymeleaf 是个什么东东

Thymeleaf 是个什么?

Thymeleaf 是一个跟 Velocity、FreeMarker 类似的模板引擎,它可以完全替代 JSP 。相较与其他的模板引擎,它有如下三个极吸引人的特点:

  • Thymeleaf 在有网络和无网络的环境下皆可运行,即它可以让美工在浏览器查看页面的静态效果,也可以让程序员在服务器查看带数据的动态页面效果。这是由于它支持 html 原型,然后在 html 标签里增加额外的属性来达到模板+数据的展示方式。浏览器解释 html 时会忽略未定义的标签属性,所以 thymeleaf 的模板可以静态地运行;当有数据返回到页面时,Thymeleaf 标签会动态地替换掉静态内容,使页面动态显示。
  • Thymeleaf 开箱即用的特性。它提供标准和spring标准两种方言,可以直接套用模板实现JSTL、 OGNL表达式效果,避免每天套模板、该jstl、改标签的困扰。同时开发人员也可以扩展和创建自定义的方言。
  • Thymeleaf 提供spring标准方言和一个与 SpringMVC 完美集成的可选模块,可以快速的实现表单绑定、属性编辑器、国际化等功能。

如何应用

同样的首先添加 Thymeleaf 的 maven 组件依赖,这就是 Spring Boot 的优点,把所有优秀的组件都集成进来,使用时仅仅添加依赖就可以了。

1
2
3
4
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>

spring-boot-starter-thymeleaf 组件中已经包含了 web 的组件,也可以将 spring-boot-starter-web 依赖删除。

然后在 resources/templates/ 下新建 hello.html 注意添加头文件 xmlns:th="http://www.thymeleaf.org"

1
2
3
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head> ... </head>

修改 HelloControllerhello.html

1
2
3
4
5
6
7
8
9
@Controller
public class HelloController {
@RequestMapping("/hello")
public String hello(Model model,
@RequestParam(value="name", required=false, defaultValue="World") String name){
model.addAttribute("name", name);
return "hello";
}
}
1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Spring Boot</title>
</head>
<body>
<p th:text="'Hello, ' + ${name} + '!'" />
</body>
</html>

启动服务,访问 http://localhost:8080/hello?name=Shure
hello shure

参考与相关链接

纯洁的微笑博客:http://www.ityouknow.com/springboot/2016/01/06/spring-boot-quick-start.html

thymeleaf参考手册 by CSDN:https://blog.csdn.net/zrk1000/article/details/72667478

示例代码:https://github.com/dddreams/learn-spring-boot/tree/master/spring-boot-helloWorld

ddAnswer

更多文章请关注微信公众号: zhiheng博客

如果文章对你有用,转发分享、点赞赞赏才是真爱 [斜眼笑]