标签:mapping etc oss 技术 cto ima ica asi evel
SessionFactory (org.hibernate.SessionFactory
)
A thread-safe (and immutable) representation of the mapping of the application domain model to a database. Acts as a factory for org.hibernate.Session
instances. The EntityManagerFactory
is the JPA equivalent of a SessionFactory
and basically those two converge into the same SessionFactory
implementation.
A SessionFactory
is very expensive to create, so, for any given database, the application should have only one associated SessionFactory
. The SessionFactory
maintains services that Hibernate uses across all Session(s)
such as second level caches, connection pools, transaction system integrations, etc.
线程安全
标签:mapping etc oss 技术 cto ima ica asi evel
原文地址:http://www.cnblogs.com/rocker-pg/p/7685816.html