Skip to content
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

Spring Transaction Propagation 옵션에 대한 내용 수정 #49

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

Joyykim
Copy link

@Joyykim Joyykim commented Dec 20, 2023

잘못된 내용 수정

  • Transaction Propagation 은 JPA 의 스펙이 아닙니다. Spring Framework 의 스펙입니다.

내용 추가

  • 실무에서 자주 사용되는 REQUIRES_NEW 옵션에 대한 내용도 추가했습니다.

Copy link
Owner

@ksundong ksundong left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

기여 감사합니다! 제가 늦게 확인했네요!
변경 요청드린 부분 확인하시어 변경해주시면 머지해두려고 합니다!
감사합니다. 🙇

<p>REQUIRED(디폴트): 이미 트랜잭션이 실행 중이라면 같은 트랜잭션 내에서 실행하고, 실행 중인 트랜잭션이 없을 경우 새로운 트랜잭션을 생성합니다.</p>
<p>REQUIRES_NEW: 이미 트랜잭션이 실행 중이어도 새로운 트랜잭션을 생성합니다. 새로 생성한 트랜잭션은 부모 트랜잭션과 독립적으로 커밋/롤백됩니다.</p>
<p>이 외에도 SUPPORTS, MANDATORY, NOT_SUPPORT, NEVER, NESTED 옵션들이 있습니다.</p>
<p>(실무에서는 주로 REQUIRED, REQUIRES_NEW 를 많이 사용합니다)</p>
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<p>(실무에서는 주로 REQUIRED, REQUIRES_NEW 를 많이 사용합니다)</p>

이 부분은 주관적인 의견이 강해 제거 요청드립니다.

<details>
<summary>스프링 트랜잭션 Propagation(전파) 옵션을 설명해주세요.</summary>
</br>
<p>대기업면접에서 나왔던 질문으로 트랜잭션 고립단계와 같이 질문할 가능성이 있습니다.</p>
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

사실 이 질문은 제가 받은건데요, 면접관께서 JPA 라고 말씀주셔서 JPA로 위치시켰습니다.
다만, 올바른 정보로 전달되는게 맞다고 판단되어 해당 부분은 제거 요청드립니다.

Suggested change
<p>대기업면접에서 나왔던 질문으로 트랜잭션 고립단계와 같이 질문할 가능성이 있습니다.</p>
<p>트랜잭션 고립단계와 같이 질문할 가능성이 있습니다.</p>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants