@Controller와 @RestController의 요청부터 응답까지
Spring

@Controller와 @RestController의 요청부터 응답까지

@Controller일 때의 요청부터 응답까지 동작 과정

 

@RestController의 요청부터 응답까지 동작 과정

RestController의 경우에는 Model에서 null을 반환하고, Model이 null인 경우에는 요청이 들어온 View를 그대로 사용한다.

 

 

참고 자료

https://mangkyu.tistory.com/m/49

https://wckhg89.github.io/archivers/understanding_jackson

https://tecoble.techcourse.co.kr/post/2021-06-25-dispatcherservlet-part-1/

https://tecoble.techcourse.co.kr/post/2021-07-15-dispatcherservlet-part-2/