같은 클래스에서 @Transcation 메서드 호출할때 문제점
키위먹고싶다
문제점 같은 클래스에서 A메서드가 @Transcation 메서드B를 호출하는 경우 B메서드의 commit이 작동하지 않아 update 가 계속해서 문제가 발생했다. public ProfileResponse updateMember(String memberId, ProfileUpdateRequest profileUpdateRequest) { return userLevelLock.LockProcess(new Object(){}.getClass().getEnclosingMethod().getName() + profileUpdateRequest.getMemberId(), () -> ProfileResponse.from(updateMemberInner(memberId, profileUpdateRequest))); ..