틀린 해석이 있다면 알려주세요 spring document 공식문서 보고 공부하는 중 https://docs.spring.io/spring-framework/docs/current/reference/html/web.html#mvc-ann-requestmapping @Controller @RestController 기본 클래스를 확장하거나 특정 인터페이스 구현 필요 X @RestController 는 메타 주석이 추가되어 렌더링할 수 있도록 함 -> @Controller, @ResponseBody 등 1.3.2. Request Mapping @RequestMapping 주석을 이용하여 컨트롤러 매핑 가능 @RestController @RequestMapping("/persons") class PersonC..