entitymanager 프록시
스프링과 EntityManager의 동시성 비밀
스프링과 EntityManager의 동시성 비밀
2021.11.20서론 최근 바빠서 항상 조금씩 끄적이면서 임시저장을 했는데 오랜만에 글을 마무리 해봅니다. 이번 글에서는 EntityManger에 대한 얘기를 해보려고합니다. 목차 EntityManager란? EntityManager가 생성되는 과정 EntityManager는 어떻게 thread-safe를 보장할까? EntityManager란 무엇일까? 공식 문서에서 EntityManager는 다음과 같이 기술되어 있다. An EntityManager instance is associated with a persistence context. A persistence context is a set of entity instances in which for any persistent entity identity there ..