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.
안녕하세요 서버 1조 박지원(david-parkk)입니다. 😄
프레임워크가 잘해주겠지 라는 생각으로 HTTP와 톰캣에 대해서 잘 알지 못하였는데, 워크북을 작성하고 실습해 보면서 서버와 클라이언트 통신에 대해 이해할 수 있어서 전주 보다 재밌게 과제를 진행했습니다.
개인의 불찰로 미션 2인 리펙토링을 진행하지 못하였습니다.
코드리뷰 관련 규칙이 변경된 것으로 알고 있는데 추후에 과제를 완료하고 리뷰를 요청하겠습니다
미션 1을 진행하면서 제가 만난 몇가지 문제들을 이야기 하고자 합니다.
1. URL 받기 🔨
2. TCP의 통신 횟수 🔨
3. 문자열 비교 🔨
==
로는 비교가 되지 않은 이슈가 있었습니다.String str = "str"
은 인스턴스를 상수풀에 저장하는데 당연히 상수풀에 있는 String을 사용한다고 생각했습니다 equals 메소드로 해결하였습니다.4. 웹캐시 🔨
ctrl + shift + R
웹캐시를 삭제하는 방식으로 해결하였습니다.