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