What is Persistence Context?

前端 未结 9 1799
难免孤独
难免孤独 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 09:01

    Both the org.hibernate.Session API and javax.persistence.EntityManager API represent a context for dealing with persistent data.

    This concept is called a persistence context. Persistent data has a state in relation to both a persistence context and the underlying database.

提交回复
热议问题