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

HTTP 웹 서버 1단계 - 요구사항 6 #21

Open
3 tasks
Dae-Hwa opened this issue Apr 1, 2021 · 1 comment · Fixed by #49 · May be fixed by #50
Open
3 tasks

HTTP 웹 서버 1단계 - 요구사항 6 #21

Dae-Hwa opened this issue Apr 1, 2021 · 1 comment · Fixed by #49 · May be fixed by #50

Comments

@Dae-Hwa
Copy link
Collaborator

Dae-Hwa commented Apr 1, 2021

브랜치: read-cookie/main

  • user/list 접근시 Cookie 헤더를 읽어서 logined=true가 있을 경우에 사용자 목록을 출력한다.
  • 만약, logined=true가 아니라면 로그인 페이지로 이동한다.

  • 사용자 목록 html을 동적으로 만든다.
    • html을 동적으로 생성하는 문법은 Handlebar을 참고한다.
    • StringBuilder로 html을 동적으로 생성할 수 있는 기능을 만든다.

요구사항 6

접근하고 있는 사용자가 “로그인” 상태일 경우(Cookie 값이 logined=true) 경우 http://localhost:8080/user/list 로 접근했을 때 사용자 목록을 출력한다. 만약 로그인하지 않은 상태라면 로그인 페이지(login.html)로 이동한다.


동적인 html 생성 힌트

  • 자바 클래스 중 StringBuilder를 활용해 사용자 목록을 출력하는 html을 동적으로 생성한 후 응답으로 보낸다.
  • 구글에서 “java stringbuilder example”로 검색해 StringBuilder 사용법을 찾는다.
@Dae-Hwa Dae-Hwa added this to the 미션1 요구사항 반영 milestone Apr 1, 2021
@sanhee sanhee added the 미션 label Aug 18, 2021
This was linked to pull requests Aug 26, 2021
@Dae-Hwa
Copy link
Collaborator Author

Dae-Hwa commented Aug 26, 2021

  • 쿠키 아예 없는 경우도 테스트
  • userListHandler, htmlHandler(현재 필요한 부분에만 적용시키기)
  • 쿠키 만들기
    • 클래스 생성하기

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants