What is Persistence Context?

前端 未结 9 1805
难免孤独
难免孤独 2020-12-07 08:19

I am new to the Java world and JPA. I was studying JPA and came across many new terms like Entity, persistence. While reading, I could not understand the exact definition fo

9条回答
  •  旧巷少年郎
    2020-12-07 08:39

    While @pritam kumar gives a good overview the 5th point is not true.

    Persistence Context can be either Transaction Scoped-- the Persistence Context 'lives' for the length of the transaction, or Extended-- the Persistence Context spans multiple transactions.

    https://blogs.oracle.com/carolmcdonald/entry/jpa_caching

    JPA's EntityManager and Hibernate's Session offer an extended Persistence Context.

提交回复
热议问题