localhost:8081/api/library/author { "timestamp": "2021-10-22T12:10:13.099+00:00", "status": 404, "error": "Not Found", "message": "No message available", "path": "/api/library/author" } 물론 이 뜻은 내 프로젝트에서 반응할게 없다는 건데... 난 분명 추가해줬다. @RestController @RequestMapping(value = "/api/library") @RequiredArgsConstructor public class LibraryController { @PostMapping("/author") public ResponseEntity createAu..