后台的功能与其它实体的添加无异,也是先建立实体然后建立对应的仓库,再建立serivce,最终建立controller。与前面学习的知识点稍有不同的是每门课程中可以有多个班级,它们间的关系是多对多,这个知识点将放到下节中单独进行讲解。本节除使用前面已学习的知识点完成基本的功能开发外,还将使用**实体监听器**来替换`@PrePersist`及`@PreUpdate`完成对课程名称长度的校验。
# 实体开发
在entity包中新建Course课程实体。
```java
package com.mengyunzhi.springbootstudy.entity;
import javax.persistence.*;
/**
* 课程
* @author panjie
*/
@Entity
public class Course {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@Column(unique = true, nullable = false)
private String name = "";
@ManyToOne
private Teacher teacher;
// 省略构造函数及setter/getter
}
```
对Course的测试依赖于仓库层,下面继续开发仓库层。
# 仓库层开发
repository/CourseRepository.java
```java
package com.mengyunzhi.springbootstudy.repository;
import com.mengyunzhi.springbootstudy.entity.Course;
import org.springframework.data.repository.CrudRepository;
public interface CourseRepository extends CrudRepository<Course, Long> {
}
```
## 测试
新建Course实体的测试文件CourseTest.java,然后分别就name字段的unique以及nullable进行验证。初始化如下:
```java
package com.mengyunzhi.springbootstudy.entity;
import com.mengyunzhi.springbootstudy.repository.CourseRepository;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@SpringBootTest
@RunWith(SpringRunner.class)
public class CourseTest {
@Autowired
CourseRepository courseRepository;
private Course course;
@Before
public void before() {
}
@Test
public void save() {
}
@Test
public void nameUniqueTest() {
}
@Test
public void nameNullable() {
}
}
```
按前面的思路,若想验证某个校验是否生效最好的方法是在@Before先创建一个正常的课程。
entity/CourseTest.java
```java
@Before
public void before() {
this.course = new Course();
this.course.setName(RandomString.make(4));
}
@Test
public void save() {
this.courseRepository.save(this.course);
}
```
### Unique验证
entity/CourseTest.java
```java
@Test(expected = DataIntegrityViolationException.class)
public void nameUniqueTest() {
this.courseRepository.save(this.course);
Course course = new Course();
course.setName(this.course.getName());
this.courseRepository.save(course);
}
```
### Nullable验证
entity/CourseTest.java
```java
@Test(expected = DataIntegrityViolationException.class)
public void nameNullable() {
this.course.setName(null);
this.courseRepository.save(course);
}
```
# M层开发
接口初始化
service/CourseService.java
```java
package com.mengyunzhi.springbootstudy.service;
import com.mengyunzhi.springbootstudy.entity.Course;
/**
* 课程
* @author panjie
*/
public interface CourseService {
/**
* 新增课程
* @param course 课程
* @return 课程
*/
Course save(Course course);
}
```
实现类
service/CourseServiceImpl.java
```java
@Service
public class CourseServiceImpl implements CourseService {
private CourseRepository courseRepository;
@Autowired
public CourseServiceImpl(CourseRepository courseRepository) {
this.courseRepository = courseRepository;
}
@Override
public Course save(Course course) {
return this.courseRepository.save(course);
}
}
```
## 单元测试
初始化如下:
service/CourseServiceImplTest.java
```java
public class CourseServiceImplTest {
private CourseRepository courseRepository;
private CourseService courseService;
public CourseServiceImplTest() {
this.courseRepository = Mockito.mock(CourseRepository.class);
this.courseService = new CourseServiceImpl(this.courseRepository);
}
@Test
public void save() {
}
}
```
补充测试代码如下:
service/CourseServiceImplTest.java
```java
@Test
public void save() {
Course course = new Course();
Course returnCourse = new Course();
Mockito.when(this.courseRepository.save(course)).thenReturn(returnCourse);
Course resultCourse = this.courseService.save(course);
Assert.assertEquals(returnCourse, resultCourse);
}
```
# C层开发
新建CourseController并初始化如下:
controller/CourseController.java
```java
@RestController
@RequestMapping("Course")
public class CourseController {
@Autowired
CourseService courseService;
@PostMapping
@ResponseStatus(HttpStatus.CREATED)
public Course save(@RequestBody Course course) {
return this.courseService.save(course);
}
}
```
## 单元测试
初始化单元测试文件Course/CourseControllerTest.java
```java
@SpringBootTest
@RunWith(SpringRunner.class)
@AutoConfigureMockMvc
public class CourseControllerTest {
@MockBean
private CourseService courseService;
@Autowired
MockMvc mockMvc;
@Test
public void save() {
}
}
```
补充测试代码如下:
Course/CourseControllerTest.java
```java
@Test
public void save() throws Exception {
JSONObject jsonObject = new JSONObject();
String name = RandomString.make(4);
jsonObject.put("name", name);
String url = "/Course";
Course returnCourse = new Course();
returnCourse.setId(new Random().nextLong());
returnCourse.setName(RandomString.make(4));
returnCourse.setTeacher(new Teacher());
returnCourse.getTeacher().setId(new Random().nextLong());
returnCourse.getTeacher().setName(RandomString.make(4));
Mockito.when(this.courseService.save(Mockito.any(Course.class))).thenReturn(returnCourse);
this.mockMvc.perform(MockMvcRequestBuilders.post(url)
.contentType(MediaType.APPLICATION_JSON_UTF8)
.content(jsonObject.toString())
).andExpect(MockMvcResultMatchers.status().is(201))
.andExpect(MockMvcResultMatchers.jsonPath("id").value(returnCourse.getId()))
.andExpect(MockMvcResultMatchers.jsonPath("name").value(returnCourse.getName()))
.andExpect(MockMvcResultMatchers.jsonPath("teacher.id").value(returnCourse.getTeacher().getId()))
.andExpect(MockMvcResultMatchers.jsonPath("teacher.name").value(returnCourse.getTeacher().getName()))
;
ArgumentCaptor<Course> courseArgumentCaptor = ArgumentCaptor.forClass(Course.class);
Mockito.verify(this.courseService).save(courseArgumentCaptor.capture());
Assert.assertEquals(courseArgumentCaptor.getValue().getName(), name);
}
```
测试结果:
```
请求的地址为/Course请求的方法为:POST
当前token未绑定登录用户,返回401
java.lang.AssertionError: Response status
Expected :201
Actual :401
```
## 401
之所以发生401是由于在上一章中启用了拦截器进行了用户认证,而当前的单元测试并没有传递认证成功的authToken。解决这个问题的方法很多,我们采用Mock TeacherService中的isLogin方法来通过认证拦截器。
Course/CourseControllerTest.java
```java
@MockBean ➊
private TeacherService teacherService;
@Before
public void before() {
Mockito.when(this.teacherService.isLogin(Mockito.any())).thenReturn(true); ➋
}
```
* ➊ 使用MockBean注入TeacherService。该注解使得在整个测试过程中运行中的teacherService全部为此替身
* ➋ 当认证拦截器调用替身的isLogin方法时返回true,表示teacher已认证
再次运行单元测试通过。
## 小作业
其它对控制器的单元测试同样发生了401错误,请参考上面的代码进行修正。
# 实体监听器
在前面的章节中使用了`@PrePersist`及`@PreUpdate`完成了对字段长度的校验,本节中展示另外一种对单元测试更友好的方案:实体监听器。
## 初始化
在entity包中新建CourseListener
entity/CourseListener.java
```java
package com.mengyunzhi.springbootstudy.entity;
import javax.persistence.PrePersist;
import javax.persistence.PreUpdate;
/**
* 实体监听器。当课程实体发生新建、更新操作时执行
*/
public class CourseListener {
@PrePersist ➊
public void prePersist(Course course➋) {
System.out.println("prePersist");
}
@PreUpdate ➊
public void perUpdate(Course course➋) {
System.out.println("perUpdate");
}
}
```
* ➊ 与在实体中直接使用的注解相同
* ➋ 参数中必须传入一个参数,该参数对应的类型为被监听的实体(在只监听某一个实体的前提下)
在Course实体上使用EntityListeners注解来添加实体监听器:
entity/Course.java
```java
@Entity
@EntityListeners(CourseListener.class)
public class Course {
```
### 测试
打到CourseTest建立update方法
entity/CourseTest.java
```java
@Test void update() {
this.courseRepository.save(this.course);
this.course.setName(RandomString.make(4));
this.courseRepository.save(this.course);
}
```
运行单元测试控制台如下:
```
prePersist
perUpdate
```
说明实体监听器已生效。
## 校验课程长度
entity/CourseListener.java
```java
public class CourseListener {
@PrePersist
public void prePersist(Course course) {
if (course.getName() == null || course.getName().length() < 2) {
throw new DataIntegrityViolationException("课程名称长度最小为2位");
}
}
@PreUpdate
public void perUpdate(Course course) {
if (course.getName() == null || course.getName().length() < 2) {
throw new DataIntegrityViolationException("课程名称长度最小为2位");
}
}
}
```
prePersist与perUpdate方法中的代码是相同的,所以合并如下:
entity/CourseListener.java
```java
public class CourseListener {
@PrePersist
@PreUpdate
public void prePersistAndUpdate(Course course) {
if (course.getName() == null || course.getName().length() < 2) {
throw new DataIntegrityViolationException("课程名称长度最小为2位");
}
}
}
```
### 单元测试
entity/CourseTest.java
```java
@Test
public void nameLength() {
Boolean catchException = false;
this.course.setName(null);
try {
this.courseRepository.save(this.course);
} catch (DataIntegrityViolationException e) {
Assert.assertEquals(e.getMessage(), "课程名称长度最小为2位");
catchException = true;
}
Assert.assertTrue(catchException);
catchException = false;
this.course.setName(RandomString.make(1));
try {
this.courseRepository.save(this.course);
} catch (DataIntegrityViolationException e) {
Assert.assertEquals(e.getMessage(), "课程名称长度最小为2位");
catchException = true;
}
Assert.assertTrue(catchException);
for (int i = 2; i < 4; i++) {
this.course.setName(RandomString.make(i));
this.courseRepository.save(this.course);
}
}
```
# 总结
本节中使用了已经学习的方法完成了课程的基本保存功能。同时学习了如何使用实体监听器的方法来对课程名称的长度进行校验。在生产环境中,可以对某一实体添加多个监听器,还可以将一个监听器添加到多个实体上。是一种灵活、可复用性强的校验方法。
# 参考文档
| 名称 | 链接 | 预计学习时长(分) |
| --- | --- | --- |
| 源码地址 | [https://github.com/mengyunzhi/spring-boot-and-angular-guild/releases/tag/step6.1.6](https://github.com/mengyunzhi/spring-boot-and-angular-guild/releases/tag/step6.1.6) | - |
- 序言
- 第一章:Hello World
- 第一节:Angular准备工作
- 1 Node.js
- 2 npm
- 3 WebStorm
- 第二节:Hello Angular
- 第三节:Spring Boot准备工作
- 1 JDK
- 2 MAVEN
- 3 IDEA
- 第四节:Hello Spring Boot
- 1 Spring Initializr
- 2 Hello Spring Boot!
- 3 maven国内源配置
- 4 package与import
- 第五节:Hello Spring Boot + Angular
- 1 依赖注入【前】
- 2 HttpClient获取数据【前】
- 3 数据绑定【前】
- 4 回调函数【选学】
- 第二章 教师管理
- 第一节 数据库初始化
- 第二节 CRUD之R查数据
- 1 原型初始化【前】
- 2 连接数据库【后】
- 3 使用JDBC读取数据【后】
- 4 前后台对接
- 5 ng-if【前】
- 6 日期管道【前】
- 第三节 CRUD之C增数据
- 1 新建组件并映射路由【前】
- 2 模板驱动表单【前】
- 3 httpClient post请求【前】
- 4 保存数据【后】
- 5 组件间调用【前】
- 第四节 CRUD之U改数据
- 1 路由参数【前】
- 2 请求映射【后】
- 3 前后台对接【前】
- 4 更新数据【前】
- 5 更新某个教师【后】
- 6 路由器链接【前】
- 7 观察者模式【前】
- 第五节 CRUD之D删数据
- 1 绑定到用户输入事件【前】
- 2 删除某个教师【后】
- 第六节 代码重构
- 1 文件夹化【前】
- 2 优化交互体验【前】
- 3 相对与绝对地址【前】
- 第三章 班级管理
- 第一节 JPA初始化数据表
- 第二节 班级列表
- 1 新建模块【前】
- 2 初识单元测试【前】
- 3 初始化原型【前】
- 4 面向对象【前】
- 5 测试HTTP请求【前】
- 6 测试INPUT【前】
- 7 测试BUTTON【前】
- 8 @RequestParam【后】
- 9 Repository【后】
- 10 前后台对接【前】
- 第三节 新增班级
- 1 初始化【前】
- 2 响应式表单【前】
- 3 测试POST请求【前】
- 4 JPA插入数据【后】
- 5 单元测试【后】
- 6 惰性加载【前】
- 7 对接【前】
- 第四节 编辑班级
- 1 FormGroup【前】
- 2 x、[x]、{{x}}与(x)【前】
- 3 模拟路由服务【前】
- 4 测试间谍spy【前】
- 5 使用JPA更新数据【后】
- 6 分层开发【后】
- 7 前后台对接
- 8 深入imports【前】
- 9 深入exports【前】
- 第五节 选择教师组件
- 1 初始化【前】
- 2 动态数据绑定【前】
- 3 初识泛型
- 4 @Output()【前】
- 5 @Input()【前】
- 6 再识单元测试【前】
- 7 其它问题
- 第六节 删除班级
- 1 TDD【前】
- 2 TDD【后】
- 3 前后台对接
- 第四章 学生管理
- 第一节 引入Bootstrap【前】
- 第二节 NAV导航组件【前】
- 1 初始化
- 2 Bootstrap格式化
- 3 RouterLinkActive
- 第三节 footer组件【前】
- 第四节 欢迎界面【前】
- 第五节 新增学生
- 1 初始化【前】
- 2 选择班级组件【前】
- 3 复用选择组件【前】
- 4 完善功能【前】
- 5 MVC【前】
- 6 非NULL校验【后】
- 7 唯一性校验【后】
- 8 @PrePersist【后】
- 9 CM层开发【后】
- 10 集成测试
- 第六节 学生列表
- 1 分页【后】
- 2 HashMap与LinkedHashMap
- 3 初识综合查询【后】
- 4 综合查询进阶【后】
- 5 小试综合查询【后】
- 6 初始化【前】
- 7 M层【前】
- 8 单元测试与分页【前】
- 9 单选与多选【前】
- 10 集成测试
- 第七节 编辑学生
- 1 初始化【前】
- 2 嵌套组件测试【前】
- 3 功能开发【前】
- 4 JsonPath【后】
- 5 spyOn【后】
- 6 集成测试
- 7 @Input 异步传值【前】
- 8 值传递与引入传递
- 9 @PreUpdate【后】
- 10 表单验证【前】
- 第八节 删除学生
- 1 CSS选择器【前】
- 2 confirm【前】
- 3 功能开发与测试【后】
- 4 集成测试
- 5 定制提示框【前】
- 6 引入图标库【前】
- 第九节 集成测试
- 第五章 登录与注销
- 第一节:普通登录
- 1 原型【前】
- 2 功能设计【前】
- 3 功能设计【后】
- 4 应用登录组件【前】
- 5 注销【前】
- 6 保留登录状态【前】
- 第二节:你是谁
- 1 过滤器【后】
- 2 令牌机制【后】
- 3 装饰器模式【后】
- 4 拦截器【前】
- 5 RxJS操作符【前】
- 6 用户登录与注销【后】
- 7 个人中心【前】
- 8 拦截器【后】
- 9 集成测试
- 10 单例模式
- 第六章 课程管理
- 第一节 新增课程
- 1 初始化【前】
- 2 嵌套组件测试【前】
- 3 async管道【前】
- 4 优雅的测试【前】
- 5 功能开发【前】
- 6 实体监听器【后】
- 7 @ManyToMany【后】
- 8 集成测试【前】
- 9 异步验证器【前】
- 10 详解CORS【前】
- 第二节 课程列表
- 第三节 果断
- 1 初始化【前】
- 2 分页组件【前】
- 2 分页组件【前】
- 3 综合查询【前】
- 4 综合查询【后】
- 4 综合查询【后】
- 第节 班级列表
- 第节 教师列表
- 第节 编辑课程
- TODO返回机制【前】
- 4 弹出框组件【前】
- 5 多路由出口【前】
- 第节 删除课程
- 第七章 权限管理
- 第一节 AOP
- 总结
- 开发规范
- 备用