Skip to content
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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

ydh6226
Copy link

@ydh6226 ydh6226 commented Apr 21, 2021

No description provided.

@ksundong ksundong self-requested a review April 22, 2021 12:13
Copy link
Owner

@ksundong ksundong left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

안녕하세요! 리뷰가 늦어져서 죄송합니다 ㅠㅠ
저도 조금 학습을 다시 하고 리뷰를 했는데요, 확인해주시면 감사하겠습니다!
기여 감사합니다!

Comment on lines +898 to +899
<p>3. 핸들러 어댑터를 실행한다.</p>
<p>4. 핸들러 어댑터가 실제 핸들러를 실행한다.</p>
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

핸들러 어댑터에 위임한다고 표현해도 좋을 것 같아요.

Comment on lines +900 to +903
<p>5. 핸들러 어댑터는 핸들러가 반환하는 정보를 ModelAndView로 변환해서 반환한다.</p>
<p>5. 뷰 리졸버를 호출한다.</p>
<p>6. 뷰 리졸버가 뷰의 논리 이름을 물리 이름으로 바꾸고 렌더링 역할을 담당하는 뷰 객체를 반환한다.</p>
<p>7. 반환된 뷰를 통해 뷰를 렌더링한다.</p>
Copy link
Owner

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이 되는 것으로 알고있습니다.

Comment on lines +900 to +903
<p>5. 핸들러 어댑터는 핸들러가 반환하는 정보를 ModelAndView로 변환해서 반환한다.</p>
<p>5. 뷰 리졸버를 호출한다.</p>
<p>6. 뷰 리졸버가 뷰의 논리 이름을 물리 이름으로 바꾸고 렌더링 역할을 담당하는 뷰 객체를 반환한다.</p>
<p>7. 반환된 뷰를 통해 뷰를 렌더링한다.</p>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<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>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants