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

[MVC 구현하기 - 3단계] 준팍(박준현) 미션 제출합니다. #595

Merged
merged 9 commits into from
Sep 25, 2023

Conversation

junpakPark
Copy link
Member

안녕하세요 제리~!!

우선 DI학습테스트 제외하고 제출합니다.
빠른 시일내에 학습테스트 추가하겠습니다~^^

Copy link

@hyeonjerry hyeonjerry left a comment

Choose a reason for hiding this comment

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

수고하셨습니다. 디스패처 서블릿을 내리고 의존성을 끊어내기 위한 노력이 느껴지는 코드였습니다ㅋㅋ
몇 가지 코멘트 남겼으니 확인해 주세요.

@Override
public void render(final Map<String, ?> model, final HttpServletRequest request, HttpServletResponse response) throws Exception {
public void render(

Choose a reason for hiding this comment

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

현재 준팍의 JsonView를 통해 랜더링 된 User 도메인을 보면 아래와 같이 나옵니다.
User{id=1, account='gugu', email='[email protected]', password='password'}
그러나, 위는 Json 형식이 아닌 것 같아요.
아래와 같이 나올 수 있도록 수정하시는건 어떨까요?

{
"user": {
"id": 1,
"account": "gugu",
"password": "password",
"email": "[email protected]"
}
}

Copy link
Member Author

Choose a reason for hiding this comment

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

이래서 눈치 빠른 제리는 좋단 말이지... 👍👍👍

Copy link
Member Author

Choose a reason for hiding this comment

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

적용 완료했습니다

}

@RequestMapping(value = "/logout", method = RequestMethod.GET)
public ModelAndView logout(HttpServletRequest req, HttpServletResponse res) {

Choose a reason for hiding this comment

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

logout까지 LoginController로 이동하셨군요!!
이렇게 하면 프로젝트 규모가 켜졌을 때 로그아웃이 어디에 구현되어 있는지 헷갈릴 것 같아요. 저는 컨트롤러를 로그인과 로그아웃을 모두 포함하는 이름으로 추상화 하거나 로그아웃 컨트롤러로 다시 나누는게 좋아 보이는데 준팍은 혹시 왜 하나로 합쳤는지 설명해 주실 수 있나요?

Copy link
Member Author

Choose a reason for hiding this comment

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

제리의 의견에 공감합니다.
AuthController로 네이밍 변경하였습니다.

두 기능을 하나의 컨트롤러로 합친 이유는, 두 기능은 서로 다른 하나만 구현하였을 때
큰 의미가 없으니 한번에 관리를 해야한다고 생각했고,
그렇기 때문에 하나의 컨트롤러에서 관리해야겠다고 생각해서 입니다.

@@ -30,4 +35,16 @@ public void onStartup(final ServletContext servletContext) {

log.info("Start AppWebApplication Initializer");
}

private static DispatcherServlet createDispatcherServlet() {
AnnotationHandlerMapping annotationHandlerMapping = new AnnotationHandlerMapping("com.techcourse.controller");

Choose a reason for hiding this comment

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

컨트롤러를 검색할 패키지를 주입받아 완벽히 의존성을 끊어주었군요👍

@hyeonjerry hyeonjerry merged commit 155442b into woowacourse:junpakpark Sep 25, 2023
1 check failed
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.

2 participants