@RequestBody는 스프링에서 클라이언트가 json 형태로 보낸 데이터를 객체로 변환하는 역할을 합니다.주로 Controller에서 데이터를 받을 때 사용합니다. @RequestBody 사용법@RequestBody 사용을 위해 다음과 같은 API를 생성하였습니다.@PostMapping("/post")public String postTest(@RequestBody TestDto dto) { return dto.toString();}...@Getter@Setter@ToString@AllArgsConstructorpublic class TestDto { private Integer number; private String name;} 컨트롤러로 받은 DTO를 문자열로 변환해서 반환하는 A..