리팩토링2 : 비밀번호 찾기, 변경 개선 및 비동기 메서드 스레드풀 방식으로 동작하도록 수정 #23
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.
src/main/java/com/ll/spring_additional/base/config/AsyncConfig.java
SimpleAsyncTaskExecutor가 동작하여 각 작업마다 새로운 스레드를 생성하여 비동기적으로 동작ThreadPoolTaskExecutor방식으로 수정RejectExecutionException 발생 -> CallerRunsPolicy 처리하여 작업을 요청한 스레드에서 동작하도록(이 경우 비동기 방식)
src/main/java/com/ll/spring_additional/boundedContext/user/entity/SiteUser.java
src/main/java/com/ll/spring_additional/boundedContext/user/service/UserService.java
close #22