-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[HOTFIX/#25] 속성 파일 인식 불가 이슈 해결 및 외부 파일 주입 방식 적용 #26
Conversation
- 의미 전달을 위해 이름에 `OAuth` 키워드를 추가함으로서 쓰이는 범위를 명시했습니다. - 부족하게 정의되어 있는 `playground` 에 대한 내용을 `external.yaml`에 반영했습니다.
… Bean 등록 제거 - 사용되지 않는 `AuthProperty` 클래스를 삭제하고 이에 대해 등록 Config 파일에서도 제거했습니다.
`-Dspring.config.additional-location` 명령 옵션 추가를 통해 볼륨 마운트로 주입되는 외부 파일을 인식할 수 있도록 했습니다.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고하셨습니다! 현욱오빠가 이거 머지되면 고치는게 더 나을까요??
@@ -73,18 +73,17 @@ private FormBody createTokenRequestFormBody(final String code) { | |||
private String createClientSecret() { | |||
Date now = new Date(); | |||
PrivateKey privateKey = | |||
KeyFileUtil.getPrivateKey(appleProperty.apple().key().path()) | |||
KeyFileUtil.getPrivateKey(appleOAuthProperty.key().path()) | |||
.orElseThrow(() -> new ClientRequestException(FAIL_READ_APPLE_PRIVATE_KEY_FILE)); | |||
|
|||
return Jwts.builder() // 토큰 생성 로직은 tokenProvider? 근데 얘는 parse는 없음 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
저의.. 고민의 흔적을 안지웠네요 나중에 지우겠습니다 ㅋㅋㅋ ㅜ
|
||
@Bean | ||
public CorsConfigurationSource corsConfigurationSource() { | ||
CorsConfiguration configuration = new CorsConfiguration(); | ||
|
||
configuration.addAllowedOrigin(authProperty.client().url()); | ||
configuration.addAllowedHeader(ALL); | ||
configuration.addAllowedMethod(ALL); | ||
configuration.setAllowCredentials(true); | ||
|
||
UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource(); | ||
|
||
source.registerCorsConfiguration(PATTERN_ALL, configuration); | ||
|
||
return source; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
확인했습니다!
Related Issue 🚀
Work Description ✏️
PR Point 📸