import org.springframework.web.bind.annotation.*; @RestController @RequestMapping("/students") public class StudentController { @GetMapping public List<Student> getAllStudents() { List<Student> students = ...; return students; } @PostMapping public void addStudent(@RequestBody Student student) { ... } } properties spring.http.converters.preferred-json-mapper=jackson


上一篇:
下一篇:
切换中文