-
Notifications
You must be signed in to change notification settings - Fork 90
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
[빙봉] 4단계 - HTTP 웹 서버 구현 미션 제출합니다. #222
Open
aegis1920
wants to merge
75
commits into
woowacourse:aegis1920
Choose a base branch
from
aegis1920:step4
base: aegis1920
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
- UrlUtils 패키지 분리 - extractFilePath 테스트 및 기능 추가 - extractRequestParam 테스트 및 기능 추가 - 유저를 바인딩하는 메서드 추가
- RequestHeader 클래스 추가 - isGet, isPost 메시지 추가 - extractHttpMethod 테스트 및 기능 추가 - extractRequestParam -> extractRequestParamFromUrl 메서드 명 수정 - extractRequestParam 테스트 및 기능 추가
- ResponseHeader 클래스 추가 - RequestHeader 테스트 추가
- HttpContentType 클래스 생성 및 테스트 작성 - RequestHandler에 static 경로 로직 작성
- RequestBody 추가 - RequestHeaderFirstLine 추가 및 테스트 작성
- ParameterBindException 추가 - extractRequestParam 메서드 1. value가 없으면 빈 문자열 2. 파라미터가 아예 없으면 throw Exception 3. key가 동일하면 ,로 join
- NotFoundHttpMethodException 추가
- MissingRequestParameterException 추가
- RootPath 체크를 RequestPath 생성자에서 하도록 수정
- Http Request Post txt 파일 추가 - RequestBody 에서 Object로 받도록 수정
- 파일확장자를 확인하는 isFileExtension 메서드 작성 - 사용하지 않는 파일 삭제
- 중복되는 로직을 ControllerTest에 넣도록 리펙토링 - AbstractController 테스트 추가 - 사용하지 않는 메서드 삭제 - 계속해서 만들던 Response 파일 삭제
- assertAll 수정
- user-application 모듈 생성 - web-server 모듈 생성
- 필요없는 coordinate 폴더 삭제 - .gitignore 수정 - gradle 수정
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.
마지막 4단계 미션 제출합니다! 미션을 진행하는 과정에서 몇 가지 궁금한 게 있습니다 :)
user-applicaiton
,web-server
로 나누어져 있습니다. 큰 틀로 생각했을 때user-application
을 스프링으로 개발한 모듈,web-server
를 톰캣으로 봐도 무방할까요?user-application
의Application
클래스에서initRequestHandler()
메서드를 통해 어느 컨트롤러로 진행되게 할 지 매핑시켜주는데요! 이 부분이 나중에 좀 더 진행된다면@Controller
,@PostMapping
을 사용해서 각 컨트롤러들이Spring Context
에Bean
으로 등록되는 것과 같나요?바쁘실텐데 리뷰하시느라 고생 많으셨습니다! 정말 감사합니다!