removed filter for classes from the JPA providers package for EclipseLink (SPR-6040)
This commit is contained in:
parent
46aabf0b65
commit
076b912f05
|
|
@ -39,7 +39,11 @@ import org.springframework.orm.jpa.JpaDialect;
|
||||||
* EclipseLink is effectively the next generation of the TopLink product.
|
* EclipseLink is effectively the next generation of the TopLink product.
|
||||||
* Thanks to Mike Keith for the original EclipseLink support prototype!
|
* Thanks to Mike Keith for the original EclipseLink support prototype!
|
||||||
*
|
*
|
||||||
|
* <p>NOTE: No need to filter out classes from the JPA providers package for
|
||||||
|
* EclipseLink (see SPR-6040)
|
||||||
|
*
|
||||||
* @author Juergen Hoeller
|
* @author Juergen Hoeller
|
||||||
|
* @author Thomas Risberg
|
||||||
* @since 2.5.2
|
* @since 2.5.2
|
||||||
* @see org.eclipse.persistence.jpa.PersistenceProvider
|
* @see org.eclipse.persistence.jpa.PersistenceProvider
|
||||||
* @see org.eclipse.persistence.jpa.JpaEntityManager
|
* @see org.eclipse.persistence.jpa.JpaEntityManager
|
||||||
|
|
@ -55,11 +59,6 @@ public class EclipseLinkJpaVendorAdapter extends AbstractJpaVendorAdapter {
|
||||||
return this.persistenceProvider;
|
return this.persistenceProvider;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public String getPersistenceProviderRootPackage() {
|
|
||||||
return "org.eclipse.persistence";
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Map<String, Object> getJpaPropertyMap() {
|
public Map<String, Object> getJpaPropertyMap() {
|
||||||
Map<String, Object> jpaProperties = new HashMap<String, Object>();
|
Map<String, Object> jpaProperties = new HashMap<String, Object>();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue