- Spring Boot & H2 教程
- Spring Boot & H2 - 首页
- Spring Boot & H2 - 概述
- Spring Boot & H2 - 环境设置
- Spring Boot & H2 - 项目设置
- Spring Boot & H2 - REST API
- Spring Boot & H2 - H2 控制台
- Spring Boot & H2 示例
- Spring Boot & H2 - 添加记录
- Spring Boot & H2 - 获取记录
- Spring Boot & H2 - 获取所有记录
- Spring Boot & H2 - 更新记录
- Spring Boot & H2 - 删除记录
- Spring Boot & H2 - 控制器单元测试
- Spring Boot & H2 - 服务单元测试
- Spring Boot & H2 - 仓库单元测试
- Spring Boot & H2 有用资源
- Spring Boot & H2 - 快速指南
- Spring Boot & H2 - 有用资源
- Spring Boot & H2 - 讨论
Spring Boot & H2 - 项目设置
如前一章环境设置中所述,我们已将生成的 Spring Boot 项目导入到 Eclipse 中。现在,让我们在src/main/java文件夹中创建以下结构。
com.tutorialspoint.controller.EmployeeController − 一个基于 REST 的控制器,用于实现基于 REST 的 API。
com.tutorialspoint.entity.Employee − 一个实体类,表示数据库中相应的表。
com.tutorialspoint.repository.EmployeeRepository − 一个仓库接口,用于实现数据库上的 CRUD 操作。
com.tutorialspoint.service.EmployeeService − 一个服务类,用于在仓库函数上实现业务操作。
com.tutorialspoint.springboot_h2.SprintBootH2Application − 一个 Spring Boot 应用类。
SprintBootH2Application 类已经存在。我们需要创建上述包以及相关的类和接口,如下所示:
实体 - Entity.java
以下是 Employee 的默认代码。它表示一个 Employee 表,包含 id、name、age 和 email 列。
package com.tutorialspoint.entity; import jakarta.persistence.Column; import jakarta.persistence.Entity; import jakarta.persistence.Id; import jakarta.persistence.Table; @Entity @Table public class Employee { // database column mappings @Id @Column private int id; @Column private String name; @Column private int age; @Column private String email; // setter/getter methods public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } }
仓库 - EmployeeRepository.java
以下是仓库的默认代码,用于在上述实体 Employee 上实现 CRUD 操作。
package com.tutorialspoint.repository; import org.springframework.data.repository.CrudRepository; import org.springframework.stereotype.Repository; import com.tutorialspoint.entity.Employee; @Repository public interface EmployeeRepository extends CrudRepository<Employee, Integer> { }
服务 - EmployeeService.java
以下是服务的默认代码,用于在仓库函数上实现操作。
package com.tutorialspoint.service; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.tutorialspoint.entity.Employee; import com.tutorialspoint.repository.EmployeeRepository; @Service public class EmployeeService { @Autowired EmployeeRepository repository; // to be implemented public Employee getEmployeeById(int id) { return null; } // to be implemented public List<Employee> getAllEmployees(){ return null; } // to be implemented public void saveOrUpdate(Employee employee) { } // to be implemented public void deleteEmployeeById(int id) { } }
控制器 - EmployeeController.java
以下是控制器的默认代码,用于实现 REST API。
package com.tutorialspoint.controller; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.DeleteMapping; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PutMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import com.tutorialspoint.entity.Employee; import com.tutorialspoint.service.EmployeeService; @RestController @RequestMapping(path = "/emp") public class EmployeeController { @Autowired EmployeeService employeeService; // to be implemented @GetMapping("/employees") public List<Employee> getAllEmployees(){ return null; } // to be implemented @GetMapping("/employee/{id}") public Employee getEmployee(@PathVariable("id") int id) { return null; } // to be implemented @DeleteMapping("/employee/{id}") public void deleteEmployee(@PathVariable("id") int id) { } // to be implemented @PostMapping("/employee") public void addEmployee(@RequestBody Employee employee) { } // to be implemented @PutMapping("/employee") public void updateEmployee(@RequestBody Employee employee) { } }
应用 - SprintBootH2Application.java
以下是应用的更新代码,用于使用上述类。
package com.tutorialspoint.springboot_h2; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.domain.EntityScan; import org.springframework.context.annotation.ComponentScan; import org.springframework.data.jpa.repository.config.EnableJpaRepositories; @ComponentScan({"com.tutorialspoint.controller","com.tutorialspoint.service"}) @EntityScan("com.tutorialspoint.entity") @EnableJpaRepositories("com.tutorialspoint.repository") @SpringBootApplication public class SpringbootH2Application { public static void main(String[] args) { SpringApplication.run(SpringbootH2Application.class, args); } }
运行/调试配置
在 Eclipse 中创建以下Maven 配置,以使用目标spring-boot:run运行 Spring Boot 应用。此配置将有助于运行 REST API,并且我们可以使用 POSTMAN 对其进行测试。