编写一个SpringBoot项目CURD
时间: 2024-04-29 07:22:59 浏览: 131
我是一名AI语言模型,无法编写SpringBoot项目CURD,但我可以给您提供一个示例。
示例代码如下:
1. 创建一个SpringBoot项目,并添加以下依赖:
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
```
2. 创建一个实体类,例如Student:
```
@Entity
@Table(name = "student")
public class Student {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
private String name;
private Integer age;
// 省略getter和setter方法
}
```
3. 创建一个DAO接口,例如StudentRepository:
```
public interface StudentRepository extends JpaRepository<Student, Integer> {
}
```
4. 创建一个Service类,例如StudentService:
```
@Service
public class StudentService {
@Autowired
private StudentRepository studentRepository;
public List<Student> findAll() {
return studentRepository.findAll();
}
public Student findById(Integer id) {
Optional<Student> optional = studentRepository.findById(id);
return optional.orElse(null);
}
public void save(Student student) {
studentRepository.save(student);
}
public void deleteById(Integer id) {
studentRepository.deleteById(id);
}
}
```
5. 创建一个Controller类,例如StudentController:
```
@RestController
@RequestMapping("/student")
public class StudentController {
@Autowired
private StudentService studentService;
@GetMapping("/findAll")
public List<Student> findAll() {
return studentService.findAll();
}
@GetMapping("/findById")
public Student findById(Integer id) {
return studentService.findById(id);
}
@PostMapping("/save")
public void save(Student student) {
studentService.save(student);
}
@GetMapping("/deleteById")
public void deleteById(Integer id) {
studentService.deleteById(id);
}
}
```
6. 启动应用程序,访问http://localhost:8080/student/findAll可以查看所有学生的信息,访问http://localhost:8080/student/findById?id=1可以根据id查询学生信息,访问http://localhost:8080/student/save可以保存学生信息,访问http://localhost:8080/student/deleteById?id=1可以根据id删除学生信息。
以上是一个简单的SpringBoot项目CURD示例,您可以根据自己的需求进行修改和扩展。
阅读全文