Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
새로 추가된 table인 uses 관련 class들을 만들었습니다.
⭐회원가입
@
가 포함되어 있지 않으면EmailFormatException
을 호출합니다.userRepository
에 저장합니다.⭐로그인
userService
의login
을 시도합니다.Optional
을 사용하여 로그인되었다고 data에 user의 id를 담아ApiResponse
를 보내주거나, 비밀번호가 잘못되었다는 예외를 호출합니다(=해당유저없음).+UserService.java에 유효성 검사가 있는데 Controller.java에서도 해야할까?
⇒ …. (안쓰면 return 값이 없다고 오류가 떠서 일단 넣어놓은건데… 추후에 해결방법 추가예정입니다 ㅠ)
⭐유효성 검사(인증, 인가) + 예외처리
인증이 필요한 api : 일기 작성, 일기 수정, 일기 삭제
인가 확인이 필요한 api : 일기 수정, 일기 삭제
@RequestHeader
: api 메서드에 헤더 값을 입력받습니다. 헤더 값 자체가 없으면 500 에러가 발생하길래GlobalExceptionHandler
에MissingRequestHeaderException handler
를 추가하여 40100 - 로그인하지 않은 사용자의 요청으로 처리하도록 하였습니다.user id를 key처럼 사용해서 검사
user_id
가 해당 Diary 객체가 가진user_id
와 같은지 검사하고, 같지 않다면 커스텀 exception인UnauthorizedException
을 발생하였습니다.