@Controller ● Client 요청에 따른 view page 반환 ● 아래의 그림과 같이 작동 출처: https://mangkyu.tistory.com/49 1. Client가 특정 URI 호출(서비스요청) 2. DispatcherServlet이 Intercept, Handler Mapping을 통해 요청에 맞는 Controller 호출 3. 비지니스 로직 처리 후 viewResolver에서 view를 찾아 Client에게 반환 @RestController ●RestController는 @Controller + @ResponseBody가 추가된것, Json 형태로 객체 데이터 반환 출처: https://mangkyu.tistory.com/49 1. Client 가 특정 URI 호출(서비스요청) 2..