Interface PersistenceUnitPostProcessor
public interface PersistenceUnitPostProcessor
Callback interface for post-processing a
MutablePersistenceUnitInfo
configuration that Spring prepares for JPA persistence unit bootstrapping.
Implementations can be registered with a DefaultPersistenceUnitManager
or via a LocalContainerEntityManagerFactoryBean.
- Since:
- 2.0
- Author:
- Juergen Hoeller
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidPost-process the givenMutablePersistenceUnitInfo, for example registering further entity classes and jar files.
-
Method Details
-
postProcessPersistenceUnitInfo
Post-process the givenMutablePersistenceUnitInfo, for example registering further entity classes and jar files.- Parameters:
pui- the chosen persistence unit configuration, as read frompersistence.xml. Passed in as MutablePersistenceUnitInfo.
-