-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dispatcher Servlet 동작 원리 추가 #21
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
안녕하세요! 리뷰가 늦어져서 죄송합니다 ㅠㅠ
저도 조금 학습을 다시 하고 리뷰를 했는데요, 확인해주시면 감사하겠습니다!
기여 감사합니다!
<p>3. 핸들러 어댑터를 실행한다.</p> | ||
<p>4. 핸들러 어댑터가 실제 핸들러를 실행한다.</p> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
핸들러 어댑터에 위임한다고 표현해도 좋을 것 같아요.
<p>5. 핸들러 어댑터는 핸들러가 반환하는 정보를 ModelAndView로 변환해서 반환한다.</p> | ||
<p>5. 뷰 리졸버를 호출한다.</p> | ||
<p>6. 뷰 리졸버가 뷰의 논리 이름을 물리 이름으로 바꾸고 렌더링 역할을 담당하는 뷰 객체를 반환한다.</p> | ||
<p>7. 반환된 뷰를 통해 뷰를 렌더링한다.</p> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
최근에는 RestController도 자주 사용하기 때문에 좀더 일반적인 내용으로 변경해주시는게 좋을 것 같아요.
ReturnValueHandler에 위임을 하는 형태로 구현된다고 알고있는데, 더 자세히 설명하려면 더 확인을 해봐야겠네요.
@ResponseBody
를 사용한 경우 ModelAndView는 null이 되는 것으로 알고있습니다.
<p>5. 핸들러 어댑터는 핸들러가 반환하는 정보를 ModelAndView로 변환해서 반환한다.</p> | ||
<p>5. 뷰 리졸버를 호출한다.</p> | ||
<p>6. 뷰 리졸버가 뷰의 논리 이름을 물리 이름으로 바꾸고 렌더링 역할을 담당하는 뷰 객체를 반환한다.</p> | ||
<p>7. 반환된 뷰를 통해 뷰를 렌더링한다.</p> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<p>5. 핸들러 어댑터는 핸들러가 반환하는 정보를 ModelAndView로 변환해서 반환한다.</p> | |
<p>5. 뷰 리졸버를 호출한다.</p> | |
<p>6. 뷰 리졸버가 뷰의 논리 이름을 물리 이름으로 바꾸고 렌더링 역할을 담당하는 뷰 객체를 반환한다.</p> | |
<p>7. 반환된 뷰를 통해 뷰를 렌더링한다.</p> | |
<p>5. 핸들러 어댑터는 핸들러가 반환하는 정보를 ModelAndView로 변환해서 반환한다.</p> | |
<p>6. 뷰 리졸버를 호출한다.</p> | |
<p>7. 뷰 리졸버가 뷰의 논리 이름을 물리 이름으로 바꾸고 렌더링 역할을 담당하는 뷰 객체를 반환한다.</p> | |
<p>8. 반환된 뷰를 통해 뷰를 렌더링한다.</p> |
No description provided.