-
Notifications
You must be signed in to change notification settings - Fork 1
[배포] 가상 쓰레드 활성화 및 버그 수정 #357
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,6 +10,10 @@ server: | |
| include-stacktrace: never | ||
|
|
||
| spring: | ||
| threads: | ||
| virtual: | ||
| enabled: true | ||
|
Comment on lines
+13
to
+15
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 가상 쓰레드를 활성화하면 Spring Boot는 웹 요청을 처리하기 위해 가상 쓰레드를 사용하게 됩니다. 이는 좋은 변화입니다. 하지만, 프로젝트 내에 Spring Boot 3.2 이상에서는 |
||
|
|
||
| config: | ||
| import: | ||
| - optional:file:.env[.properties] | ||
|
|
||
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.
현재 로직에서
!existingUser.isKakaoUser()는existingUser.isMosuUser()와 동일한 의미를 가집니다. (AuthProvider가KAKAO와MOSU두 가지만 있기 때문입니다.) 따라서else if문에서isMosuUser()확인은 중복되므로 제거하여 코드를 더 간결하게 만들 수 있습니다.