Spring Boot H2 简明教程

Spring Boot & H2 - REST APIs

与上一章 Application Setup 一样,我们在 Spring Boot 项目中创建了所需文件。现在在 POSTMAN 中创建以下集合来测试 REST API。

postman structure
  1. GET Get All Employees − 这是一个返回所有员工的 GET 请求。

  2. POST Add an Employee − 这是一个创建员工的 POST 请求。

  3. PUT Update an Employee − 这是一个更新现有员工的 PUT 请求。

  4. GET An Employee − 这是一个获取通过其 id 识别的员工的 GET 请求。

  5. Delete An Employee − 这是一个删除通过其 id 识别的员工的删除请求。

GET All Employees

在 POSTMAN 中设置以下参数。

  1. HTTP Method − GET

  2. URL − http://localhost:8080/emp/employees

Add an Employee

在 POSTMAN 中设置以下参数。

  1. HTTP Method − POST

  2. URL − http://localhost:8080/emp/employee

  3. 正文 - An employee JSON

{
   "id": "1",
   "age": "35",
   "name": "Julie",
   "email": "julie@gmail.com"
}

Update an Employee

在 POSTMAN 中设置以下参数。

  1. HTTP Method − PUT

  2. URL − http://localhost:8080/emp/employee

  3. 正文 - An employee JSON

{
   "id": "1",
   "age": "35",
   "name": "Julie",
   "email": "julie.roberts@gmail.com"
}

GET An Employees

在 POSTMAN 中设置以下参数。

  1. HTTP Method − GET

  2. URL - http://localhost:8080/emp/employee/1 − 其中 1 为员工 ID

Delete An Employees

在 POSTMAN 中设置以下参数。

  1. HTTP Method − DELETE

  2. URL - http://localhost:8080/emp/employee/1 − 其中 1 为员工 ID