Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
안녕하세요 서버 5주차 미션을 진행한 김광일입니다.
이번 미션에서는 스프링에 대한 기본적인 동작 방식에 대해 알아볼 수 있었습니다. 스프링은 사용해본 경험이 있기에 어렵지 않게 미션을 수행하였던 것 같습니다. 하지만 스프링에 대한 기본 지식에 대해서는 모르는 부분이 많았어서 이번 기회에 한 번 총 정리 해볼 수 있었습니다.
미션 진행도(100%)
미션 수행 내용
의존 관계 주입
해당 컨트롤러에서는 Repository를 사용중이며 해당 Repository에 대해 의존성을 주입할 필요성이 있었습니다. 그렇기에 Repository에 의존성을 추가하고 컨트롤러에서는 생성자 주입을 통해 의존성을 주입하였습니다.
controller 구현
기존 컨트롤러를 수정하여 RequestMapping을 통해 각각의 uri에 맞게 매핑을 해주고 그에 맞는 view이름을 전달하는 방식으로 구현을 하였습니다.