Skip to content

Latest commit

 

History

History
44 lines (27 loc) · 1.22 KB

3-2_查询请求.md

File metadata and controls

44 lines (27 loc) · 1.22 KB

3-2 查询请求

编写第一个 RESTful API

  • 编写针对 RESTful API 的测试用例
  • 使用注解声明 RESTful API
  • 在 RESTful API 中传递参数

常用注解

  • @RestController 标明此 Controller 提供 RESTAPI
  • @RequestMapping及其变体 映射 http 请求 url 到 java 方法
  • @RequestParam 映射请求参数到 java 方法的参数
  • @PageableDefault 指定分页参数默认值

问题整理

编写针对 RESTful API 的测试用例

使用注解声明 RESTful API

  • java.lang.AssertionError: No value at JSON path "$.length()", exception: json can not be null or empty

    问题原因:UserController 的 查询方法返回 null