조회(사용자 정보 조회 / 아이디 비번 전부 다 조회)
- Method : GET
- Path : /users
- Example Endpoint : 'https://localhost:8080/user?id=1'
- Request : QueryString
- Response :
- Long id : 사용자 ID
- String userName : 사용자 이름
- String userId : 사용자 id
- String userPassword : 사용자 비밀번호
- String userEmail : 사용자 이메일
{
"id" : 1
"userName" : "추추"
"userId" : "chuchu"
"userPassword" : "chu123"
"userEmail" : "chu@naver.com"
}