-
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
[LIME-20] 포인트 지급 처리를 AOP -> Event로 변경 #28
Conversation
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.
수고하셨습니다~!
@EventListener | ||
public void earnPoint(final PointEvent pointEvent) { | ||
final Member member = memberReader.read(pointEvent.getMemberId()); | ||
member.earnPoint(pointEvent.getPoint()); | ||
} |
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.
여기에 비동기처리는 필요 없을까요?
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.
제가 알기론 비동기 처리를 할 경우 별도의 스레드로 실행되어 다른 트랜잭션에서 처리되는 것으로 압니다! 포인트 지급은 별도의 트랜잭션이 아닌 동일 트랜잭션에서 처리하기로 결정해서 비동기 처리는 안했습니다 😊
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.
트랜젝션 전파레벨을 조정해서 새로운 트랜잭션을 생성하더라도 한 트랜잭션처럼 작용하게 하면 어떨까를 한번 생각해보고 있었습니돠
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.
TransactionSynchronizationManager 라는 곳에서 ThreadLocal로 관리하기 때문에 트랜잭션 레벨을 조정해도 부모 트랜잭션 정보를 얻을 수 없어 예외가 발생한다는 내용이 있네요!
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.
오 재현님 덕분에 TransactionSynchronizationManager 처음 알게되었는데 저런 것도 있군요! 인사이트 감사합니다😊
1. 비동기로 처리하게 되면 별도의 스레드에서 트랜잭션 실행
2. TransactionSynchronizationManager는 스레드마다 독립적으로 Connection을 관리하기 때문에 다른 스레드는 같은 트랜잭션 사용 불가능
=> 비동기 처리 불가능
위와 같이 이해했는데 맞을까요!?
수고하셨습니다! 전체적으로 코드 봤을 때 이전에 이야기 했던 부분들도 있어서 바로 승인했습니다. |
📌 PR 종류
어떤 종류의 PR인지 아래 항목 중에 체크 해주세요.
📌 어떤 기능이 추가 되었나요?
Issue Number
LIME-20
🖤 Event 리팩토링 설명
🖤 Event를 선택한 이유
Yiseull/dev-qna#8
📌 기존에 있던 기능에 영향을 주나요?