Conversation
added 16 commits
November 15, 2025 10:02
# Conflicts: # build.gradle # src/main/java/kr/kro/photoliner/domain/user/model/User.java # src/main/java/kr/kro/photoliner/domain/user/repository/UserRepository.java
# Conflicts: # build.gradle # src/main/java/kr/kro/photoliner/domain/album/controller/AlbumController.java # src/main/java/kr/kro/photoliner/domain/photo/controller/PhotoController.java # src/main/java/kr/kro/photoliner/domain/photo/service/PhotoService.java # src/main/resources/application-local-example.yml
kih1015
approved these changes
Nov 23, 2025
Comment on lines
+34
to
+35
| @Value("${jwt.secret-key}") String secretKey, | ||
| @Value("${jwt.access-token.expiration-time}") Long accessTokenExpirationTime |
Contributor
There was a problem hiding this comment.
application-dev.yml 파일에 설정해야합니다!
Comment on lines
+66
to
+67
| // WebClient | ||
| implementation 'org.springframework.boot:spring-boot-starter-webflux' |
Contributor
There was a problem hiding this comment.
RestClient 대안도 존재하는데 무거운 웹플럭스 사용하신 이유가 궁금합니다!
Collaborator
Author
There was a problem hiding this comment.
찾아보니 webflux는 스프링부트 개발환경에 적합하지 않다고 나오네요..
추후 시간이 된다면 RestClient 로 변경해 보겠습니다!
Contributor
There was a problem hiding this comment.
webflux, RestClient 각 기술이 가진 장단점을 비교분석 후 선택했으면 더 좋지 않았을까 싶네요👍
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
📌 ISSUE 번호
📄 작업 내용 요약
카카오 로그인
/api/v1/users/login/kakao엔드포인트 호출6 (등록되지 않은 경우) 사용자의 email을 바탕으로 사용자를 DB에 등록
AccessToken생성AccessToken이 fragement로 포함된 리다이렉트 URL을 반환하여 클라이언트에게 응답JWT 인증
refreshToken을 사용하지 않는 대신accessToken의 유효 시간을 길게 설정ArgumentResolver를 사용하여accessToken검증과 사용자 Id 를 가져오도록 함📢 참고 사항
✅ 체크리스트