Skip to content

[BE] 설계

Solar edited this page Mar 26, 2020 · 3 revisions

User

private Long id -pk

private String userId -unique

private String password

private String name

private LocalDateTime birthday

private String gender

private String email

private String phoneNumber

private String[] interest

private boolean agreement

// private LocalDateTime createdDateTime


URL

회원가입 폼 : GET /users/join/form → return 페이지

회원가입 : POST /users → return redirect:/ (홈 메인페이지)

로그인 폼 : GET /user/login/form

로그인 : POST /user/login

로그인한 사용자의 개인 정보 조회 : GET /users/{userId}

api

중복 ID 조회 /api/duplicate/id
중복 이메일 조회 /api/duplicate/email
중복 핸드폰 조회 /api/duplicate/phone-number
Clone this wiki locally