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

[톰캣 구현하기 - 3, 4단계] 조이(김성연) 미션 제출합니다. #473

Merged
merged 19 commits into from
Sep 13, 2023
Merged
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
aa3dd74
refactor: HttpRequestUri가 path와 queryString을 가지도록 수정
yeonkkk Sep 6, 2023
1074eca
refactor: 개행 및 final 컨벤션 통일
yeonkkk Sep 6, 2023
85c96fa
refactor: toString 메서드명 변경
yeonkkk Sep 6, 2023
4ffb6f7
feat: Cookie & Session 구현
yeonkkk Sep 8, 2023
0bb79b4
refactor: 역할 분리를 위한 Controller 및 RequestMapping 추가
yeonkkk Sep 10, 2023
59e023f
chore: 패키지 변경
yeonkkk Sep 10, 2023
3bb9396
refactor: Thread Pool 적용
yeonkkk Sep 11, 2023
9674e73
refactor: 동시성 컬렉션 적용
yeonkkk Sep 11, 2023
0922f5d
refactor: 매직 리터럴 상수화
yeonkkk Sep 11, 2023
c1870e8
refactor: 메서드 위치 수정, 불필요한 코드 제거
yeonkkk Sep 11, 2023
7d6ae10
refactor: User 생성자 추가, password 비교 로직 변경
yeonkkk Sep 11, 2023
838dd4a
refactor: static import, 메서드 분리
yeonkkk Sep 11, 2023
aa653ca
refactor: 상수 접근자 변경, 로그인 로그 추가
yeonkkk Sep 11, 2023
7bd3ef3
refactor: 허용되지 않은 메서드로 요청할 경우 상태코드 405를 반환하도록 수정
yeonkkk Sep 12, 2023
a814c60
refactor: Authorizer를 통해 session 존재 여부를 확인하도록 변경
yeonkkk Sep 12, 2023
c5ff7bf
chore: RequestMapping 패키지 변경
yeonkkk Sep 12, 2023
c85a3e9
refactor: 404 페이지 반환 방식 변경
yeonkkk Sep 12, 2023
42235a3
refactor: containsKey() 검증 제거
yeonkkk Sep 12, 2023
ecbff03
refactor: 쓰레드 작업 처리 메서드 변경
yeonkkk Sep 12, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ private void process(final Socket connection) {
return;
}
var processor = new Http11Processor(connection);
executorService.execute(processor);
executorService.submit(processor);

Choose a reason for hiding this comment

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

submit할게요~

}

public void stop() {
Expand Down