You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found there only provides a managedClass(Class<?> class) method in the PersistenceConfiguration, but does not provides methods to add a collection of classes.
eg.
PersistenceConfigurationmanagedClasses(Class<?> classes...)
PersistenceConfigurationmanagedClasses(Collection<Class<?>> classes)
// add all jpa managed classes in the package located by the specified classPersistenceConfigurationmanagedPackage(Class<?> class)
PersistenceConfigurationmanagedPackages(Class<?> classes...)
PersistenceConfigurationmanagedPackages(Collection<Class<?>> classes)
The text was updated successfully, but these errors were encountered:
I found there only provides a
managedClass(Class<?> class)
method in thePersistenceConfiguration
, but does not provides methods to add a collection of classes.eg.
The text was updated successfully, but these errors were encountered: