Uses of Interface
javax.persistence.EntityManagerFactory
-
Packages that use EntityManagerFactory Package Description javax.persistence Jakarta Persistence is the API for the management for persistence and object/relational mapping.javax.persistence.spi SPI for Jakarta Persistence providers -
-
Uses of EntityManagerFactory in javax.persistence
Methods in javax.persistence that return EntityManagerFactory Modifier and Type Method Description static EntityManagerFactory
Persistence. createEntityManagerFactory(java.lang.String persistenceUnitName)
Create and return an EntityManagerFactory for the named persistence unit.static EntityManagerFactory
Persistence. createEntityManagerFactory(java.lang.String persistenceUnitName, java.util.Map properties)
Create and return an EntityManagerFactory for the named persistence unit using the given properties.EntityManagerFactory
EntityManager. getEntityManagerFactory()
Return the entity manager factory for the entity manager. -
Uses of EntityManagerFactory in javax.persistence.spi
Methods in javax.persistence.spi that return EntityManagerFactory Modifier and Type Method Description EntityManagerFactory
PersistenceProvider. createContainerEntityManagerFactory(PersistenceUnitInfo info, java.util.Map map)
Called by the container when anEntityManagerFactory
is to be created.EntityManagerFactory
PersistenceProvider. createEntityManagerFactory(java.lang.String emName, java.util.Map map)
Called byPersistence
class when anEntityManagerFactory
is to be created.
-