-
Notifications
You must be signed in to change notification settings - Fork 26
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
2주차 미션 / 서버 1조 주민석 #2
Open
emes-g
wants to merge
26
commits into
Konkuk-KUIT:main
Choose a base branch
from
emes-g:emes-g
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
localhost 혹은 localhost/index.html로 접속하는 경우, index.html로 라우팅
GET 방식으로 회원 가입하고 /index.html로 리다이렉트
POST 방식으로 회원 가입하고 /index.html로 리다이렉트
로그인 기능과 쿠키 저장 기능 구현
1. 기존 Cookie Path가 /user에 한정되어서, 홈 경로(/)로 수정 2. 로그인 상태일 경우, 유저 리스트 출력 3. 비로그인 상태일 경우, 로그인 화면으로 이동
null을 처리하는 방식을 try-catch에서 !=로 변경
request message를 RequestHandler에서 분리 가능한가를 테스트하는 코드 작성
정답 코드와 비교하면서 리팩토링을 해보기 위함
정답 코드와 비교하면서 리팩토링을 해보기 위함
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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조 주민석입니다.
주변에 열심히 하는 동료들이 있어 더 열심히 공부하게 되는 2주차였던 것 같습니다.
금요일에 일정이 있어, 리팩토링을 다 마치지 못하고 PR을 보내는게 아쉬울 따름입니다.
리팩토링을 못한 부분은 주말에 마저(꼭!) 공부해보기로 하고, 2주차 미션을 진행하면서 고민했던 부분이나 신경써서 구현했던 부분에 대해 같이 이야기해보고자 합니다.
1. Cookie Path 설정
문제
응답 헤더(/user/login)에는 Set-Cookie가 잘 설정되어 있었는데, 요청 헤더(/index.html)에서는 응답 헤더에서 설정된 Cookie가 확인되지 않는 문제가 있었습니다.
원인
원인은 Cookie가 적용되는 Path가 '/user' 이었는데요. 즉, '/index.html' 는 해당 Cookie가 적용되는 범위가 아니었습니다.
해결
그래서 Cookie의 Path를 홈 경로(/)로 설정하여 해결하였습니다.
2. Webserver 실행 불가
문제
main()을 가지고 있는 Webserver.java 파일의 실행이 불가했습니다.
원인
미션 레포지토리에서 Fork and Clone한 후 파일을 단순히 열었습니다.
즉, Gradle Project를 Load하지 않고 Backend-Java-Tomcat 디렉토리를 열어서 발생한 문제였습니다.
해결
그래서 Gradle Project를 Reload한 후, 미션을 진행하였습니다.
현재 리팩토링은 RequestHandler에서 request message를 분리해내는 과정(미션 2-2)까지 진행한 상황입니다.
주말에 꼭 끝까지 해보고, 제공해주시는 코드랑 비교하며 보완하겠습니다!
워크북 키워드 작성도 다소 부실한 감이 있어, 리팩토링 이후 남는 시간에 보완하도록 하겠습니다.
즐거운 주말 보내셨으면 좋겠습니다. 😁