Conversation
…293] - CreatorGrpcAdapter: BlockingStub → FutureStub, withDeadlineAfter 제거 - @Timelimiter(name = "creatorService") 추가 - 반환 타입 CreatorId → CompletableFuture<CreatorId> 전환 - fallback 반환 타입도 CompletableFuture<CreatorId>로 통일 - CreatorIdQueryPort: 반환 타입 CompletableFuture<CreatorId>로 업데이트 - 서비스 레이어: getCreatorId().join() 호출로 변경 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…h") 제거 [KAN-289] Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…n import 제거 [KAN-289] Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
… 전 계층 제거 [KAN-293] Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…[KAN-289] Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- OAuth2Provider에 LOCAL 추가 - User 도메인에 passwordHash 필드 및 createEmailBuilder 추가 - SignupWithEmail / LoginWithEmail UseCase 및 Service 구현 - UserGrpcService에 signupWithEmail / loginWithEmail RPC 추가 - BCryptPasswordEncoder 빈 등록 (SecurityConfiguration) - findByEmail 쿼리 및 DuplicateEmailException / InvalidPasswordException 추가 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- POST /auth/signup: BCrypt 해싱 → user 서비스 gRPC → 토큰 발급 - POST /auth/email-login: user 서비스에서 BCrypt 검증 → 토큰 발급 - UserEmailGrpcAdapter: EmailUserPort 구현 (FutureStub + CircuitBreaker + TimeLimiter) - BCryptPasswordEncoder 빈 등록 (SecurityConfiguration) - SignupService / EmailLoginService: 기존 LoginService 토큰 발급 패턴 재사용 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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.
관련 이슈
변경 사항 요약
user 서비스
OAuth2Provider에LOCAL추가User도메인에passwordHash필드 및createEmailBuilder추가SignupWithEmailUseCase/LoginWithEmailUseCase및 구현 서비스 추가UserGrpcService에signupWithEmail/loginWithEmailRPC 추가BCryptPasswordEncoder빈 등록findByEmail쿼리,DuplicateEmailException/InvalidPasswordException추가auth 서비스
POST /auth/signup: BCrypt 해싱 → user gRPC → 토큰 발급 (access token + refresh cookie)POST /auth/email-login: user gRPC에서 BCrypt 검증 → 토큰 발급UserEmailGrpcAdapter:FutureStub+@CircuitBreaker+@TimeLimiter패턴BCryptPasswordEncoder빈 등록테스트 체크리스트
POST /auth/signup→ 201 + access token + refresh cookie 확인POST /auth/email-login→ 200 + 토큰 확인./gradlew :services:user:compileJava./gradlew :services:auth:compileJava