Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Spring Boot JWT - 회원가입/로그인

File structure

com.isuisu.sign
├── configuration
├── controller
├── dto
├── mapper
├── model
├── repository
├── security
└── service

Endpoint

POST /api/signup
POST /api/signin
GET /api/me

Table

users

Column Type Description
id Long Primary Key, 사용자 고유 ID
username String 로그인에 사용되는 사용자 아이디, Null 불가
password String 암호화된 사용자 비밀번호, Null 불가
nickname String 사용자의 별명, Null 허용
authorities Enum (String) 사용자의 권한 수준, Null 불가

refresh_tokens

Column Type Description
id Long Primary Key, 고유 식별자
userId Long 사용자 ID, Null 불가
refreshToken String 리프레시 토큰 값, Null 불가

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages