Skip to content

Commit

Permalink
docs: 기능 목록 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
echo724 committed Sep 11, 2023
1 parent a4c763a commit 0516102
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 톰캣 구현하기

## 기능 목록
## 기능 목록 Step1,2

- [x] GET /index.html로 접속하면 index.html 파일을 읽어 클라이언트에 응답한다.
- [x] GET /css/styles.css로 접속하면 static/css/styles.css 파일을 읽어 클라이언트에 응답한다.
Expand All @@ -14,4 +14,13 @@
- 로그인 성공시 JSESSIONID 쿠키를 생성한다.
- 로그인 실패시 302 코드와 함께 /401.html로 이동한다.
- [x] 접근할 수 없는 경로로 접속하면 404.html로 이동한다.
- [x] JSESSIONID 쿠키가 존재하는 경우 login.html로 이동시 index.html로 이동한다.
- [x] JSESSIONID 쿠키가 존재하는 경우 login.html로 이동시 index.html로 이동한다.

### 기능 목록 Step3,4

- [x] Controller와 AbstractController를 구현
- [x] 각 요청별로 Controller를 생성
- [x] RequestMapping을 통해 요청에 맞는 Controller를 찾아서 실행
- [x] 기존 코드를 RequestMapping을 통해 실행하도록 수정
- [x] Connectors에서 ExcutorService 사용
- [x] SessionManger에서 ConcurrentHashMap 사용

0 comments on commit 0516102

Please sign in to comment.