Merge remote-tracking branch 'upstream/master' into wip/6.0

This commit is contained in:
Andrea Boriero 2020-10-27 14:24:37 +00:00
commit 4d8c89920a
30 changed files with 202 additions and 245 deletions

View File

@ -4,6 +4,4 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later. * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
*/ */
// Expected to match the jar name: drop a copy of ojdbc8.jar in a local directory, jdbcDependency 'com.oracle.database.jdbc:ojdbc8:19.8.0.0'
// then point the environment variable ADDITIONAL_REPO to that directory.
jdbcDependency name : 'ojdbc8'

View File

@ -6,7 +6,7 @@
# #
hibernate.dialect org.hibernate.dialect.Oracle12cDialect hibernate.dialect org.hibernate.dialect.Oracle12cDialect
hibernate.connection.driver_class oracle.jdbc.driver.OracleDriver hibernate.connection.driver_class oracle.jdbc.OracleDriver
hibernate.connection.url jdbc:oracle:thin:@hibernate-testing-oracle-se.ccuzkqo3zqzq.us-east-1.rds.amazonaws.com:1521:ORCL hibernate.connection.url jdbc:oracle:thin:@hibernate-testing-oracle-se.ccuzkqo3zqzq.us-east-1.rds.amazonaws.com:1521:ORCL
hibernate.connection.username hibernate_orm_test hibernate.connection.username hibernate_orm_test
hibernate.connection.password hibernate_orm_test hibernate.connection.password hibernate_orm_test

View File

@ -69,7 +69,7 @@ hibernate.connection.url jdbc:hsqldb:./build/db/hsqldb/hibernate
#hibernate.dialect org.hibernate.dialect.Oracle8iDialect #hibernate.dialect org.hibernate.dialect.Oracle8iDialect
#hibernate.dialect org.hibernate.dialect.Oracle9iDialect #hibernate.dialect org.hibernate.dialect.Oracle9iDialect
#hibernate.dialect org.hibernate.dialect.Oracle10gDialect #hibernate.dialect org.hibernate.dialect.Oracle10gDialect
#hibernate.connection.driver_class oracle.jdbc.driver.OracleDriver #hibernate.connection.driver_class oracle.jdbc.OracleDriver
#hibernate.connection.username ora #hibernate.connection.username ora
#hibernate.connection.password ora #hibernate.connection.password ora
#hibernate.connection.url jdbc:oracle:thin:@localhost:1521:orcl #hibernate.connection.url jdbc:oracle:thin:@localhost:1521:orcl

View File

@ -54,7 +54,7 @@ hibernate.connection.url @DB_URL@
#hibernate.dialect org.hibernate.dialect.OracleDialect #hibernate.dialect org.hibernate.dialect.OracleDialect
#hibernate.dialect org.hibernate.dialect.Oracle9Dialect #hibernate.dialect org.hibernate.dialect.Oracle9Dialect
#hibernate.connection.driver_class oracle.jdbc.driver.OracleDriver #hibernate.connection.driver_class oracle.jdbc.OracleDriver
#hibernate.connection.username ora #hibernate.connection.username ora
#hibernate.connection.password ora #hibernate.connection.password ora
#hibernate.connection.url jdbc:oracle:thin:@localhost:1521:test #hibernate.connection.url jdbc:oracle:thin:@localhost:1521:test

View File

@ -1,2 +1,2 @@
# Keep system properties in sync with test system properties (java-module.gradle)! # Keep system properties in sync with test system properties (java-module.gradle)!
org.gradle.jvmargs=-Xmx1g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError -Duser.language=en -Duser.country=US -Duser.timezone=UTC -Dfile.encoding=UTF-8 org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=256m -XX:+HeapDumpOnOutOfMemoryError -Duser.language=en -Duser.country=US -Duser.timezone=UTC -Dfile.encoding=UTF-8

View File

@ -76,11 +76,21 @@ ext {
], ],
oracle : [ oracle : [
'db.dialect' : 'org.hibernate.dialect.Oracle10gDialect', 'db.dialect' : 'org.hibernate.dialect.Oracle10gDialect',
'jdbc.driver': 'oracle.jdbc.driver.OracleDriver', 'jdbc.driver': 'oracle.jdbc.OracleDriver',
'jdbc.user' : 'hibernate_orm_test', 'jdbc.user' : 'hibernate_orm_test',
'jdbc.pass' : 'hibernate_orm_test', 'jdbc.pass' : 'hibernate_orm_test',
'jdbc.url' : 'jdbc:oracle:thin:@localhost:1521/xe' 'jdbc.url' : 'jdbc:oracle:thin:@localhost:1521/xe'
], ],
// Uses the default settings for using https://hub.docker.com/_/oracle-database-enterprise-edition
// After registering to get access (see instructions at above link), start it for testing with:
// docker run --ulimit memlock=-1:-1 -it --rm=true --memory-swappiness=0 --name ORCLCDB -p 1521:1521 store/oracle/database-enterprise:12.2.0.1-slim
oracle_docker : [
'db.dialect' : 'org.hibernate.dialect.Oracle12cDialect',
'jdbc.driver': 'oracle.jdbc.OracleDriver',
'jdbc.user' : 'sys as sysdba',
'jdbc.pass' : 'Oradoc_db1',
'jdbc.url' : 'jdbc:oracle:thin:@localhost:1521:ORCLCDB'
],
mssql : [ mssql : [
'db.dialect' : 'org.hibernate.dialect.SQLServer2012Dialect', 'db.dialect' : 'org.hibernate.dialect.SQLServer2012Dialect',
'jdbc.driver': 'com.microsoft.sqlserver.jdbc.SQLServerDriver', 'jdbc.driver': 'com.microsoft.sqlserver.jdbc.SQLServerDriver',

View File

@ -23,6 +23,10 @@ buildscript {
import de.thetaphi.forbiddenapis.gradle.CheckForbiddenApis import de.thetaphi.forbiddenapis.gradle.CheckForbiddenApis
import org.apache.tools.ant.filters.ReplaceTokens import org.apache.tools.ant.filters.ReplaceTokens
/**
* Support for modules that contain Java code
*/
apply from: rootProject.file( 'gradle/base-information.gradle' ) apply from: rootProject.file( 'gradle/base-information.gradle' )
apply from: rootProject.file( 'gradle/libraries.gradle' ) apply from: rootProject.file( 'gradle/libraries.gradle' )
apply from: rootProject.file( 'gradle/databases.gradle' ) apply from: rootProject.file( 'gradle/databases.gradle' )
@ -107,10 +111,8 @@ dependencies {
testRuntime( libraries.hana ) testRuntime( libraries.hana )
testRuntime( libraries.cockroachdb ) testRuntime( libraries.cockroachdb )
if ( db.equalsIgnoreCase( 'oracle' ) ) { if ( db.equalsIgnoreCase( 'oracle' ) || db.equalsIgnoreCase( 'oracle_docker' ) ) {
testRuntime( libraries.oracle ) { testRuntime( libraries.oracle )
exclude group: 'com.oracle.jdbc', module: 'xmlparserv2'
}
} }
else if ( db.equalsIgnoreCase( 'db2' ) ) { else if ( db.equalsIgnoreCase( 'db2' ) ) {
testRuntime( libraries.db2 ) testRuntime( libraries.db2 )
@ -196,10 +198,10 @@ tasks.withType( Test.class ).each { test ->
test.jvmArgs += [ test.jvmArgs += [
'-XX:+HeapDumpOnOutOfMemoryError', '-XX:+HeapDumpOnOutOfMemoryError',
"-XX:HeapDumpPath=${file( "${buildDir}/OOM-dump.hprof" ).absolutePath}", "-XX:HeapDumpPath=${file( "${buildDir}/OOM-dump.hprof" ).absolutePath}",
'-XX:MetaspaceSize=512M' '-XX:MetaspaceSize=256M'
] ]
test.maxHeapSize = '4G' test.maxHeapSize = '3G'
test.systemProperties['hibernate.test.validatefailureexpected'] = true test.systemProperties['hibernate.test.validatefailureexpected'] = true
test.systemProperties += System.properties.findAll { it.key.startsWith( "hibernate." ) } test.systemProperties += System.properties.findAll { it.key.startsWith( "hibernate." ) }

View File

@ -17,7 +17,7 @@ ext {
bytemanVersion = '4.0.13' //Compatible with JDK16 bytemanVersion = '4.0.13' //Compatible with JDK16
jnpVersion = '5.0.6.CR1' jnpVersion = '5.0.6.CR1'
hibernateCommonsVersion = '5.1.0.Final' hibernateCommonsVersion = '5.1.1.Final'
hibernateValidatorVersion = '6.1.5.Final' hibernateValidatorVersion = '6.1.5.Final'
validationApiVersion = '2.0.1.Final' validationApiVersion = '2.0.1.Final'
elVersion = '3.0.1-b09' elVersion = '3.0.1-b09'
@ -129,7 +129,7 @@ ext {
mariadb: 'org.mariadb.jdbc:mariadb-java-client:2.2.3', mariadb: 'org.mariadb.jdbc:mariadb-java-client:2.2.3',
cockroachdb: 'org.postgresql:postgresql:42.2.8', cockroachdb: 'org.postgresql:postgresql:42.2.8',
oracle: 'com.oracle.jdbc:ojdbc8:12.2.0.1', oracle: 'com.oracle.database.jdbc:ojdbc8:19.8.0.0',
mssql: 'com.microsoft.sqlserver:mssql-jdbc:7.2.1.jre8', mssql: 'com.microsoft.sqlserver:mssql-jdbc:7.2.1.jre8',
db2: 'com.ibm.db2:db2jcc:10.5', db2: 'com.ibm.db2:db2jcc:10.5',
hana: 'com.sap.cloud.db.jdbc:ngdbc:2.4.59', hana: 'com.sap.cloud.db.jdbc:ngdbc:2.4.59',

View File

@ -25,9 +25,7 @@ dependencies {
testRuntime( libraries.expression_language ) testRuntime( libraries.expression_language )
if ( db.equalsIgnoreCase( 'oracle' ) ) { if ( db.equalsIgnoreCase( 'oracle' ) ) {
testRuntime( libraries.oracle ) { testRuntime( libraries.oracle )
exclude group: 'com.oracle.jdbc', module: 'xmlparserv2'
}
} }
} }

View File

@ -13,11 +13,9 @@ import java.util.HashMap;
import java.util.Map; import java.util.Map;
import org.hibernate.AssertionFailure; import org.hibernate.AssertionFailure;
import org.hibernate.annotations.common.reflection.ClassLoaderDelegate;
import org.hibernate.annotations.common.reflection.ClassLoadingException;
import org.hibernate.annotations.common.reflection.ReflectionManager; import org.hibernate.annotations.common.reflection.ReflectionManager;
import org.hibernate.annotations.common.reflection.java.JavaReflectionManager; import org.hibernate.annotations.common.reflection.java.JavaReflectionManager;
import org.hibernate.annotations.common.util.StandardClassLoaderDelegateImpl; import org.hibernate.boot.AttributeConverterInfo;
import org.hibernate.boot.CacheRegionDefinition; import org.hibernate.boot.CacheRegionDefinition;
import org.hibernate.boot.archive.scan.internal.StandardScanOptions; import org.hibernate.boot.archive.scan.internal.StandardScanOptions;
import org.hibernate.boot.archive.scan.spi.ScanEnvironment; import org.hibernate.boot.archive.scan.spi.ScanEnvironment;
@ -322,32 +320,7 @@ public class BootstrapContextImpl implements BootstrapContext {
private JavaReflectionManager generateHcannReflectionManager() { private JavaReflectionManager generateHcannReflectionManager() {
final JavaReflectionManager reflectionManager = new JavaReflectionManager(); final JavaReflectionManager reflectionManager = new JavaReflectionManager();
reflectionManager.setMetadataProvider( new JPAMetadataProvider( this ) ); reflectionManager.setMetadataProvider( new JPAMetadataProvider( this ) );
reflectionManager.injectClassLoaderDelegate( generateHcannClassLoaderDelegate() );
return reflectionManager; return reflectionManager;
} }
private ClassLoaderDelegate generateHcannClassLoaderDelegate() {
// class loading here needs to be drastically different for 7.0
// but luckily 7.0 will do away with HCANN use and be easier to
// implement this.
//
// todo (6.0) : *if possible* make similar change in 6.0
// possibly using the JPA temp class loader or create our own "throw awy" ClassLoader;
// the trouble there is that we eventually need to load the Class into the real
// ClassLoader prior to use
final ClassLoaderService classLoaderService = getServiceRegistry().getService( ClassLoaderService.class );
return new ClassLoaderDelegate() {
@Override
public <T> Class<T> classForName(String className) throws ClassLoadingException {
try {
return classLoaderService.classForName( className );
}
catch (org.hibernate.boot.registry.classloading.spi.ClassLoadingException e) {
return StandardClassLoaderDelegateImpl.INSTANCE.classForName( className );
}
}
};
}
} }

View File

@ -17,8 +17,6 @@ import javax.persistence.Embeddable;
import javax.persistence.Entity; import javax.persistence.Entity;
import javax.persistence.MappedSuperclass; import javax.persistence.MappedSuperclass;
import org.hibernate.AnnotationException;
import org.hibernate.annotations.common.reflection.ClassLoadingException;
import org.hibernate.annotations.common.reflection.MetadataProviderInjector; import org.hibernate.annotations.common.reflection.MetadataProviderInjector;
import org.hibernate.annotations.common.reflection.ReflectionManager; import org.hibernate.annotations.common.reflection.ReflectionManager;
import org.hibernate.annotations.common.reflection.XClass; import org.hibernate.annotations.common.reflection.XClass;
@ -59,6 +57,7 @@ public class AnnotationMetadataSourceProcessorImpl implements MetadataSourceProc
private final LinkedHashSet<String> annotatedPackages = new LinkedHashSet<>(); private final LinkedHashSet<String> annotatedPackages = new LinkedHashSet<>();
private final List<XClass> xClasses = new ArrayList<>(); private final List<XClass> xClasses = new ArrayList<>();
private final ClassLoaderService classLoaderService;
public AnnotationMetadataSourceProcessorImpl( public AnnotationMetadataSourceProcessorImpl(
ManagedResources managedResources, ManagedResources managedResources,
@ -74,6 +73,7 @@ public class AnnotationMetadataSourceProcessorImpl implements MetadataSourceProc
} }
final AttributeConverterManager attributeConverterManager = new AttributeConverterManager( rootMetadataBuildingContext ); final AttributeConverterManager attributeConverterManager = new AttributeConverterManager( rootMetadataBuildingContext );
this.classLoaderService = rootMetadataBuildingContext.getBuildingOptions().getServiceRegistry().getService( ClassLoaderService.class );
if ( rootMetadataBuildingContext.getBuildingOptions().isXmlMappingEnabled() ) { if ( rootMetadataBuildingContext.getBuildingOptions().isXmlMappingEnabled() ) {
@ -97,25 +97,24 @@ public class AnnotationMetadataSourceProcessorImpl implements MetadataSourceProc
final List<String> classNames = jpaMetadataProvider.getXMLContext().addDocument( dom4jDocument ); final List<String> classNames = jpaMetadataProvider.getXMLContext().addDocument( dom4jDocument );
for ( String className : classNames ) { for ( String className : classNames ) {
xClasses.add( toXClass( className, reflectionManager ) ); xClasses.add( toXClass( className, reflectionManager, classLoaderService ) );
} }
} }
jpaMetadataProvider.getXMLContext().applyDiscoveredAttributeConverters( attributeConverterManager ); jpaMetadataProvider.getXMLContext().applyDiscoveredAttributeConverters( attributeConverterManager );
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
} }
final ClassLoaderService cls = rootMetadataBuildingContext.getBuildingOptions().getServiceRegistry().getService( ClassLoaderService.class );
for ( String className : managedResources.getAnnotatedClassNames() ) { for ( String className : managedResources.getAnnotatedClassNames() ) {
final Class annotatedClass = cls.classForName( className ); final Class annotatedClass = classLoaderService.classForName( className );
categorizeAnnotatedClass( annotatedClass, attributeConverterManager ); categorizeAnnotatedClass( annotatedClass, attributeConverterManager, classLoaderService );
} }
for ( Class annotatedClass : managedResources.getAnnotatedClassReferences() ) { for ( Class annotatedClass : managedResources.getAnnotatedClassReferences() ) {
categorizeAnnotatedClass( annotatedClass, attributeConverterManager ); categorizeAnnotatedClass( annotatedClass, attributeConverterManager, classLoaderService );
} }
} }
private void categorizeAnnotatedClass(Class annotatedClass, AttributeConverterManager attributeConverterManager) { private void categorizeAnnotatedClass(Class annotatedClass, AttributeConverterManager attributeConverterManager, ClassLoaderService cls) {
final XClass xClass = reflectionManager.toXClass( annotatedClass ); final XClass xClass = reflectionManager.toXClass( annotatedClass );
// categorize it, based on assumption it does not fall into multiple categories // categorize it, based on assumption it does not fall into multiple categories
if ( xClass.isAnnotationPresent( Converter.class ) ) { if ( xClass.isAnnotationPresent( Converter.class ) ) {
@ -135,13 +134,8 @@ public class AnnotationMetadataSourceProcessorImpl implements MetadataSourceProc
} }
@SuppressWarnings("deprecation") @SuppressWarnings("deprecation")
private XClass toXClass(String className, ReflectionManager reflectionManager) { private XClass toXClass(String className, ReflectionManager reflectionManager, ClassLoaderService cls) {
try { return reflectionManager.toXClass( cls.classForName( className ) );
return reflectionManager.classForName( className );
}
catch ( ClassLoadingException e ) {
throw new AnnotationException( "Unable to load class defined in XML: " + className, e );
}
} }
// private Document toDom4jDocument(MappingBinder.DelayedOrmXmlData delayedOrmXmlData) { // private Document toDom4jDocument(MappingBinder.DelayedOrmXmlData delayedOrmXmlData) {
@ -192,7 +186,7 @@ public class AnnotationMetadataSourceProcessorImpl implements MetadataSourceProc
AnnotationBinder.bindDefaults( rootMetadataBuildingContext ); AnnotationBinder.bindDefaults( rootMetadataBuildingContext );
for ( String annotatedPackage : annotatedPackages ) { for ( String annotatedPackage : annotatedPackages ) {
AnnotationBinder.bindPackage( annotatedPackage, rootMetadataBuildingContext ); AnnotationBinder.bindPackage( classLoaderService, annotatedPackage, rootMetadataBuildingContext );
} }
} }
@ -303,7 +297,7 @@ public class AnnotationMetadataSourceProcessorImpl implements MetadataSourceProc
@Override @Override
public void postProcessEntityHierarchies() { public void postProcessEntityHierarchies() {
for ( String annotatedPackage : annotatedPackages ) { for ( String annotatedPackage : annotatedPackages ) {
AnnotationBinder.bindFetchProfilesForPackage( annotatedPackage, rootMetadataBuildingContext ); AnnotationBinder.bindFetchProfilesForPackage( classLoaderService, annotatedPackage, rootMetadataBuildingContext );
} }
} }

View File

@ -261,6 +261,22 @@ public class ClassLoaderServiceImpl implements ClassLoaderService {
); );
} }
@Override
public Package packageForNameOrNull(String packageName) {
try {
Class<?> aClass = Class.forName( packageName + ".package-info", true, getAggregatedClassLoader() );
return aClass == null ? null : aClass.getPackage();
}
catch (ClassNotFoundException e) {
log.packageNotFound( packageName );
return null;
}
catch (LinkageError e) {
log.warn( "LinkageError while attempting to load Package named " + packageName, e );
return null;
}
}
@Override @Override
public <T> T workWithClassLoader(Work<T> work) { public <T> T workWithClassLoader(Work<T> work) {
return work.doWork( getAggregatedClassLoader() ); return work.doWork( getAggregatedClassLoader() );

View File

@ -75,6 +75,21 @@ public interface ClassLoaderService extends Service, Stoppable {
<T> T generateProxy(InvocationHandler handler, Class... interfaces); <T> T generateProxy(InvocationHandler handler, Class... interfaces);
/**
* Loading a Package from the classloader. In case it's not found or an
* internal error (such as @see {@link LinkageError} occurs, we
* return null rather than throwing an exception.
* This is significantly different than loading a Class, as in all
* currently known usages, being unable to load the Package will
* only result in ignoring annotations on it - which is totally
* fine when the object doesn't exist.
* In case of other errors, implementations are expected to log
* a warning but it's still not treated as a fatal error.
* @param packageName
* @return the matching Package, or null.
*/
Package packageForNameOrNull(String packageName);
interface Work<T> { interface Work<T> {
T doWork(ClassLoader classLoader); T doWork(ClassLoader classLoader);
} }

View File

@ -127,7 +127,7 @@ import org.hibernate.annotations.Tuplizers;
import org.hibernate.annotations.TypeDef; import org.hibernate.annotations.TypeDef;
import org.hibernate.annotations.TypeDefs; import org.hibernate.annotations.TypeDefs;
import org.hibernate.annotations.Where; import org.hibernate.annotations.Where;
import org.hibernate.annotations.common.reflection.ClassLoadingException; import org.hibernate.annotations.common.reflection.ReflectionManager;
import org.hibernate.annotations.common.reflection.XAnnotatedElement; import org.hibernate.annotations.common.reflection.XAnnotatedElement;
import org.hibernate.annotations.common.reflection.XClass; import org.hibernate.annotations.common.reflection.XClass;
import org.hibernate.annotations.common.reflection.XMethod; import org.hibernate.annotations.common.reflection.XMethod;
@ -136,6 +136,7 @@ import org.hibernate.annotations.common.reflection.XProperty;
import org.hibernate.boot.model.IdGeneratorStrategyInterpreter; import org.hibernate.boot.model.IdGeneratorStrategyInterpreter;
import org.hibernate.boot.model.IdentifierGeneratorDefinition; import org.hibernate.boot.model.IdentifierGeneratorDefinition;
import org.hibernate.boot.model.TypeDefinition; import org.hibernate.boot.model.TypeDefinition;
import org.hibernate.boot.registry.classloading.spi.ClassLoaderService;
import org.hibernate.boot.spi.InFlightMetadataCollector; import org.hibernate.boot.spi.InFlightMetadataCollector;
import org.hibernate.boot.spi.InFlightMetadataCollector.EntityTableXref; import org.hibernate.boot.spi.InFlightMetadataCollector.EntityTableXref;
import org.hibernate.boot.spi.MetadataBuildingContext; import org.hibernate.boot.spi.MetadataBuildingContext;
@ -150,8 +151,6 @@ import org.hibernate.cfg.annotations.PropertyBinder;
import org.hibernate.cfg.annotations.QueryBinder; import org.hibernate.cfg.annotations.QueryBinder;
import org.hibernate.cfg.annotations.TableBinder; import org.hibernate.cfg.annotations.TableBinder;
import org.hibernate.engine.OptimisticLockStyle; import org.hibernate.engine.OptimisticLockStyle;
import org.hibernate.engine.config.spi.ConfigurationService;
import org.hibernate.engine.config.spi.StandardConverters;
import org.hibernate.engine.spi.FilterDefinition; import org.hibernate.engine.spi.FilterDefinition;
import org.hibernate.id.PersistentIdentifierGenerator; import org.hibernate.id.PersistentIdentifierGenerator;
import org.hibernate.internal.CoreMessageLogger; import org.hibernate.internal.CoreMessageLogger;
@ -314,19 +313,12 @@ public final class AnnotationBinder {
} }
} }
public static void bindPackage(String packageName, MetadataBuildingContext context) { public static void bindPackage(ClassLoaderService cls, String packageName, MetadataBuildingContext context) {
XPackage pckg; final Package packaze = cls.packageForNameOrNull( packageName );
try { if ( packaze == null ) {
pckg = context.getBootstrapContext().getReflectionManager().packageForName( packageName );
}
catch (ClassLoadingException e) {
LOG.packageNotFound( packageName );
return;
}
catch ( ClassNotFoundException cnf ) {
LOG.packageNotFound( packageName );
return; return;
} }
final XPackage pckg = context.getBootstrapContext().getReflectionManager().toXPackage( packaze );
if ( pckg.isAnnotationPresent( SequenceGenerator.class ) ) { if ( pckg.isAnnotationPresent( SequenceGenerator.class ) ) {
SequenceGenerator ann = pckg.getAnnotation( SequenceGenerator.class ); SequenceGenerator ann = pckg.getAnnotation( SequenceGenerator.class );
@ -1507,20 +1499,13 @@ public final class AnnotationBinder {
bindFetchProfiles( clazzToProcess, context ); bindFetchProfiles( clazzToProcess, context );
} }
public static void bindFetchProfilesForPackage(String packageName, MetadataBuildingContext context) { public static void bindFetchProfilesForPackage(ClassLoaderService cls, String packageName, MetadataBuildingContext context) {
XPackage pckg; final Package packaze = cls.packageForNameOrNull( packageName );
try { if ( packaze == null ) {
pckg = context.getBootstrapContext().getReflectionManager().packageForName( packageName );
}
catch (ClassLoadingException e) {
LOG.packageNotFound( packageName );
return; return;
} }
catch ( ClassNotFoundException cnf ) { final ReflectionManager reflectionManager = context.getBootstrapContext().getReflectionManager();
LOG.packageNotFound( packageName ); final XPackage pckg = reflectionManager.toXPackage( packaze );
return;
}
bindFetchProfiles( pckg, context ); bindFetchProfiles( pckg, context );
} }

View File

@ -31,7 +31,6 @@ import org.hibernate.annotations.AnyMetaDef;
import org.hibernate.annotations.AnyMetaDefs; import org.hibernate.annotations.AnyMetaDefs;
import org.hibernate.annotations.MetaValue; import org.hibernate.annotations.MetaValue;
import org.hibernate.annotations.SqlFragmentAlias; import org.hibernate.annotations.SqlFragmentAlias;
import org.hibernate.annotations.common.reflection.ClassLoadingException;
import org.hibernate.annotations.common.reflection.XAnnotatedElement; import org.hibernate.annotations.common.reflection.XAnnotatedElement;
import org.hibernate.annotations.common.reflection.XClass; import org.hibernate.annotations.common.reflection.XClass;
import org.hibernate.annotations.common.reflection.XPackage; import org.hibernate.annotations.common.reflection.XPackage;
@ -1111,14 +1110,8 @@ public class BinderHelper {
PropertyHolder propertyHolder, PropertyHolder propertyHolder,
String propertyName, String propertyName,
MetadataBuildingContext buildingContext) { MetadataBuildingContext buildingContext) {
final XClass persistentXClass; final XClass persistentXClass = buildingContext.getBootstrapContext().getReflectionManager()
try { .toXClass( propertyHolder.getPersistentClass().getMappedClass() );
persistentXClass = buildingContext.getBootstrapContext().getReflectionManager()
.classForName( propertyHolder.getPersistentClass().getClassName() );
}
catch ( ClassLoadingException e ) {
throw new AssertionFailure( "PersistentClass name cannot be converted into a Class", e);
}
if ( propertyHolder.isInIdClass() ) { if ( propertyHolder.isInIdClass() ) {
PropertyData pd = buildingContext.getMetadataCollector().getPropertyAnnotatedWithIdAndToOne( PropertyData pd = buildingContext.getMetadataCollector().getPropertyAnnotatedWithIdAndToOne(
persistentXClass, persistentXClass,

View File

@ -6,12 +6,8 @@
*/ */
package org.hibernate.cfg.annotations; package org.hibernate.cfg.annotations;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Member; import java.lang.reflect.Member;
import java.lang.reflect.Method;
import org.hibernate.AssertionFailure;
import org.hibernate.HibernateException;
import org.hibernate.annotations.common.reflection.XProperty; import org.hibernate.annotations.common.reflection.XProperty;
import org.hibernate.annotations.common.reflection.java.JavaXMember; import org.hibernate.annotations.common.reflection.java.JavaXMember;
@ -20,47 +16,35 @@ import org.hibernate.annotations.common.reflection.java.JavaXMember;
* *
* @author Steve Ebersole * @author Steve Ebersole
*/ */
public class HCANNHelper { public final class HCANNHelper {
private static Method getMemberMethod;
static {
// The following is in a static block to avoid problems lazy-initializing
// and making accessible in a multi-threaded context. See HHH-11289.
final Class<?> javaXMemberClass = JavaXMember.class;
try {
getMemberMethod = javaXMemberClass.getDeclaredMethod( "getMember" );
// NOTE : no need to check accessibility here - we know it is protected
getMemberMethod.setAccessible( true );
}
catch (NoSuchMethodException e) {
throw new AssertionFailure(
"Could not resolve JavaXMember#getMember method in order to access XProperty member signature",
e
);
}
catch (Exception e) {
throw new HibernateException( "Could not access org.hibernate.annotations.common.reflection.java.JavaXMember#getMember method", e );
}
}
/**
* @deprecated Prefer using {@link #annotatedElementSignature(JavaXMember)}
*/
@Deprecated
public static String annotatedElementSignature(XProperty xProperty) { public static String annotatedElementSignature(XProperty xProperty) {
return getUnderlyingMember( xProperty ).toString(); return getUnderlyingMember( xProperty ).toString();
} }
public static String annotatedElementSignature(final JavaXMember jxProperty) {
return getUnderlyingMember( jxProperty ).toString();
}
/**
* @deprecated Prefer using {@link #getUnderlyingMember(JavaXMember)}
*/
@Deprecated
public static Member getUnderlyingMember(XProperty xProperty) { public static Member getUnderlyingMember(XProperty xProperty) {
try { if (xProperty instanceof JavaXMember) {
return (Member) getMemberMethod.invoke( xProperty ); JavaXMember jx = (JavaXMember)xProperty;
return jx.getMember();
} }
catch (IllegalAccessException e) { else {
throw new AssertionFailure( throw new org.hibernate.HibernateException( "Can only extract Member from a XProperty which is a JavaXMember" );
"Could not resolve member signature from XProperty reference",
e
);
} }
catch (InvocationTargetException e) {
throw new AssertionFailure(
"Could not resolve member signature from XProperty reference",
e.getCause()
);
} }
public static Member getUnderlyingMember(final JavaXMember jxProperty) {
return jxProperty.getMember();
} }
} }

View File

@ -23,9 +23,9 @@ import org.hibernate.AnnotationException;
import org.hibernate.AssertionFailure; import org.hibernate.AssertionFailure;
import org.hibernate.FetchMode; import org.hibernate.FetchMode;
import org.hibernate.MappingException; import org.hibernate.MappingException;
import org.hibernate.annotations.common.reflection.ClassLoadingException;
import org.hibernate.annotations.common.reflection.XClass; import org.hibernate.annotations.common.reflection.XClass;
import org.hibernate.annotations.common.reflection.XProperty; import org.hibernate.annotations.common.reflection.XProperty;
import org.hibernate.boot.spi.BootstrapContext;
import org.hibernate.boot.spi.MetadataBuildingContext; import org.hibernate.boot.spi.MetadataBuildingContext;
import org.hibernate.cfg.AccessType; import org.hibernate.cfg.AccessType;
import org.hibernate.cfg.AnnotatedClassType; import org.hibernate.cfg.AnnotatedClassType;
@ -219,19 +219,17 @@ public class MapBinder extends CollectionBinder {
//does not make sense for a map key element.setIgnoreNotFound( ignoreNotFound ); //does not make sense for a map key element.setIgnoreNotFound( ignoreNotFound );
} }
else { else {
XClass keyXClass; final XClass keyXClass;
AnnotatedClassType classType; AnnotatedClassType classType;
if ( BinderHelper.PRIMITIVE_NAMES.contains( mapKeyType ) ) { if ( BinderHelper.PRIMITIVE_NAMES.contains( mapKeyType ) ) {
classType = AnnotatedClassType.NONE; classType = AnnotatedClassType.NONE;
keyXClass = null; keyXClass = null;
} }
else { else {
try { final BootstrapContext bootstrapContext = buildingContext.getBootstrapContext();
keyXClass = buildingContext.getBootstrapContext().getReflectionManager().classForName( mapKeyType ); final Class<Object> mapKeyClass = bootstrapContext.getClassLoaderAccess().classForName( mapKeyType );
} keyXClass = bootstrapContext.getReflectionManager().toXClass( mapKeyClass );
catch (ClassLoadingException e) {
throw new AnnotationException( "Unable to find class: " + mapKeyType, e );
}
classType = buildingContext.getMetadataCollector().getClassType( keyXClass ); classType = buildingContext.getMetadataCollector().getClassType( keyXClass );
// force in case of attribute override naming the key // force in case of attribute override naming the key
if ( isEmbedded || mappingDefinedAttributeOverrideOnMapKey( property ) ) { if ( isEmbedded || mappingDefinedAttributeOverrideOnMapKey( property ) ) {

View File

@ -137,9 +137,17 @@ public class StandardRefCursorSupport implements RefCursorSupport {
*/ */
public static boolean supportsRefCursors(DatabaseMetaData meta) { public static boolean supportsRefCursors(DatabaseMetaData meta) {
try { try {
return meta.supportsRefCursors(); final boolean mightSupportIt = meta.supportsRefCursors();
// Some databases cheat and don't actually support it correctly: add some additional checks.
if ( mightSupportIt ) {
if ( "Oracle JDBC driver".equals( meta.getDriverName() ) && meta.getDriverMajorVersion() < 19 ) {
return false;
} }
catch (SQLException throwable) { }
return mightSupportIt;
}
catch (Exception throwable) {
//If the driver is not compatible with the Java 8 contract, the method might not exit.
log.debug( "Unexpected error trying to gauge level of JDBC REF_CURSOR support : " + throwable.getMessage() ); log.debug( "Unexpected error trying to gauge level of JDBC REF_CURSOR support : " + throwable.getMessage() );
return false; return false;
} }

View File

@ -61,7 +61,7 @@ public class EventEngine {
continue; continue;
} }
this.callbackBuilder.buildCallbacksForEntity( persistentClass.getClassName(), callbackRegistry ); this.callbackBuilder.buildCallbacksForEntity( persistentClass.getMappedClass(), callbackRegistry );
for ( Iterator<Property> propertyIterator = persistentClass.getDeclaredPropertyIterator(); propertyIterator.hasNext(); ) { for ( Iterator<Property> propertyIterator = persistentClass.getDeclaredPropertyIterator(); propertyIterator.hasNext(); ) {
final Property property = propertyIterator.next(); final Property property = propertyIterator.next();
@ -69,7 +69,7 @@ public class EventEngine {
if ( property.getType().isComponentType() ) { if ( property.getType().isComponentType() ) {
this.callbackBuilder.buildCallbacksForEmbeddable( this.callbackBuilder.buildCallbacksForEmbeddable(
property, property,
persistentClass.getClassName(), persistentClass.getMappedClass(),
callbackRegistry callbackRegistry
); );
} }

View File

@ -20,7 +20,6 @@ import javax.persistence.MappedSuperclass;
import javax.persistence.PersistenceException; import javax.persistence.PersistenceException;
import org.hibernate.MappingException; import org.hibernate.MappingException;
import org.hibernate.annotations.common.reflection.ClassLoadingException;
import org.hibernate.annotations.common.reflection.ReflectionManager; import org.hibernate.annotations.common.reflection.ReflectionManager;
import org.hibernate.annotations.common.reflection.XClass; import org.hibernate.annotations.common.reflection.XClass;
import org.hibernate.annotations.common.reflection.XMethod; import org.hibernate.annotations.common.reflection.XMethod;
@ -52,10 +51,7 @@ final class CallbackBuilderLegacyImpl implements CallbackBuilder {
} }
@Override @Override
public void buildCallbacksForEntity(String entityClassName, CallbackRegistrar callbackRegistrar) { public void buildCallbacksForEntity(Class entityClass, CallbackRegistrar callbackRegistrar) {
try {
final XClass entityXClass = reflectionManager.classForName( entityClassName );
final Class entityClass = reflectionManager.toClass( entityXClass );
for ( CallbackType callbackType : CallbackType.values() ) { for ( CallbackType callbackType : CallbackType.values() ) {
if ( callbackRegistrar.hasRegisteredCallbacks( entityClass, callbackType ) ) { if ( callbackRegistrar.hasRegisteredCallbacks( entityClass, callbackType ) ) {
// this most likely means we have a class mapped multiple times using the hbm.xml // this most likely means we have a class mapped multiple times using the hbm.xml
@ -65,28 +61,20 @@ final class CallbackBuilderLegacyImpl implements CallbackBuilder {
"CallbackRegistry reported that Class [%s] already had %s callbacks registered; " + "CallbackRegistry reported that Class [%s] already had %s callbacks registered; " +
"assuming this means the class was mapped twice " + "assuming this means the class was mapped twice " +
"(using hbm.xml entity-name support) - skipping subsequent registrations", "(using hbm.xml entity-name support) - skipping subsequent registrations",
entityClassName, entityClass.getName(),
callbackType.getCallbackAnnotation().getSimpleName() callbackType.getCallbackAnnotation().getSimpleName()
); );
} }
continue; continue;
} }
final Callback[] callbacks = resolveEntityCallbacks( entityXClass, callbackType, reflectionManager ); final Callback[] callbacks = resolveEntityCallbacks( entityClass, callbackType, reflectionManager );
callbackRegistrar.registerCallbacks( entityClass, callbacks ); callbackRegistrar.registerCallbacks( entityClass, callbacks );
} }
} }
catch (ClassLoadingException e) {
throw new MappingException( "entity class not found: " + entityClassName, e );
}
}
@Override @Override
public void buildCallbacksForEmbeddable( public void buildCallbacksForEmbeddable(
Property embeddableProperty, String entityClassName, CallbackRegistrar callbackRegistrar) { Property embeddableProperty, Class entityClass, CallbackRegistrar callbackRegistrar) {
try {
final XClass entityXClass = reflectionManager.classForName( entityClassName );
final Class entityClass = reflectionManager.toClass( entityXClass );
for ( CallbackType callbackType : CallbackType.values() ) { for ( CallbackType callbackType : CallbackType.values() ) {
final Callback[] callbacks = resolveEmbeddableCallbacks( final Callback[] callbacks = resolveEmbeddableCallbacks(
entityClass, entityClass,
@ -97,10 +85,6 @@ final class CallbackBuilderLegacyImpl implements CallbackBuilder {
callbackRegistrar.registerCallbacks( entityClass, callbacks ); callbackRegistrar.registerCallbacks( entityClass, callbacks );
} }
} }
catch (ClassLoadingException e) {
throw new MappingException( "Class not found: ", e );
}
}
@Override @Override
public void release() { public void release() {
@ -108,11 +92,11 @@ final class CallbackBuilderLegacyImpl implements CallbackBuilder {
} }
@SuppressWarnings({"unchecked", "WeakerAccess"}) @SuppressWarnings({"unchecked", "WeakerAccess"})
public Callback[] resolveEntityCallbacks(XClass beanClass, CallbackType callbackType, ReflectionManager reflectionManager) { public Callback[] resolveEntityCallbacks(Class entityClass, CallbackType callbackType, ReflectionManager reflectionManager) {
List<Callback> callbacks = new ArrayList<>(); List<Callback> callbacks = new ArrayList<>();
List<String> callbacksMethodNames = new ArrayList<>(); List<String> callbacksMethodNames = new ArrayList<>();
List<Class> orderedListeners = new ArrayList<>(); List<Class> orderedListeners = new ArrayList<>();
XClass currentClazz = beanClass; XClass currentClazz = reflectionManager.toXClass( entityClass );
boolean stopListeners = false; boolean stopListeners = false;
boolean stopDefaultListeners = false; boolean stopDefaultListeners = false;
do { do {
@ -140,7 +124,7 @@ final class CallbackBuilderLegacyImpl implements CallbackBuilder {
"Adding %s as %s callback for entity %s", "Adding %s as %s callback for entity %s",
methodName, methodName,
callbackType.getCallbackAnnotation().getSimpleName(), callbackType.getCallbackAnnotation().getSimpleName(),
beanClass.getName() entityClass.getName()
); );
} }
callbacks.add( 0, callback ); //superclass first callbacks.add( 0, callback ); //superclass first
@ -149,7 +133,7 @@ final class CallbackBuilderLegacyImpl implements CallbackBuilder {
else { else {
throw new PersistenceException( throw new PersistenceException(
"You can only annotate one callback method with " "You can only annotate one callback method with "
+ callbackType.getCallbackAnnotation().getName() + " in bean class: " + beanClass.getName() + callbackType.getCallbackAnnotation().getName() + " in bean class: " + entityClass.getName()
); );
} }
} }
@ -216,7 +200,7 @@ final class CallbackBuilderLegacyImpl implements CallbackBuilder {
"Adding %s as %s callback for entity %s", "Adding %s as %s callback for entity %s",
methodName, methodName,
callbackType.getCallbackAnnotation().getSimpleName(), callbackType.getCallbackAnnotation().getSimpleName(),
beanClass.getName() entityClass.getName()
); );
} }
callbacks.add( 0, callback ); // listeners first callbacks.add( 0, callback ); // listeners first
@ -225,7 +209,7 @@ final class CallbackBuilderLegacyImpl implements CallbackBuilder {
throw new PersistenceException( throw new PersistenceException(
"You can only annotate one callback method with " "You can only annotate one callback method with "
+ callbackType.getCallbackAnnotation().getName() + callbackType.getCallbackAnnotation().getName()
+ " in bean class: " + beanClass.getName() + " in bean class: " + entityClass.getName()
+ " and callback listener: " + listener.getName() + " and callback listener: " + listener.getName()
); );
} }
@ -240,8 +224,8 @@ final class CallbackBuilderLegacyImpl implements CallbackBuilder {
@SuppressWarnings({"unchecked", "WeakerAccess"}) @SuppressWarnings({"unchecked", "WeakerAccess"})
public Callback[] resolveEmbeddableCallbacks(Class entityClass, Property embeddableProperty, CallbackType callbackType, ReflectionManager reflectionManager) { public Callback[] resolveEmbeddableCallbacks(Class entityClass, Property embeddableProperty, CallbackType callbackType, ReflectionManager reflectionManager) {
final String embeddableClassName = embeddableProperty.getType().getReturnedClass().getName(); final Class embeddableClass = embeddableProperty.getType().getReturnedClass();
final XClass embeddableXClass = reflectionManager.classForName( embeddableClassName ); final XClass embeddableXClass = reflectionManager.toXClass( embeddableClass );
final Getter embeddableGetter = embeddableProperty.getGetter( entityClass ); final Getter embeddableGetter = embeddableProperty.getGetter( entityClass );
final List<Callback> callbacks = new ArrayList<>(); final List<Callback> callbacks = new ArrayList<>();
final List<String> callbacksMethodNames = new ArrayList<>(); final List<String> callbacksMethodNames = new ArrayList<>();

View File

@ -12,12 +12,12 @@ import org.hibernate.mapping.Property;
final class EmptyCallbackBuilder implements CallbackBuilder { final class EmptyCallbackBuilder implements CallbackBuilder {
@Override @Override
public void buildCallbacksForEntity(String entityClassName, CallbackRegistrar callbackRegistrar) { public void buildCallbacksForEntity(Class entityClass, CallbackRegistrar callbackRegistrar) {
//no-op //no-op
} }
@Override @Override
public void buildCallbacksForEmbeddable(Property embeddableProperty, String entityClassName, CallbackRegistrar callbackRegistrar) { public void buildCallbacksForEmbeddable(Property embeddableProperty, Class entityClass, CallbackRegistrar callbackRegistrar) {
//no-op //no-op
} }

View File

@ -28,11 +28,11 @@ public interface CallbackBuilder {
void registerCallbacks(Class entityClass, Callback[] callbacks); void registerCallbacks(Class entityClass, Callback[] callbacks);
} }
void buildCallbacksForEntity(String entityClassName, CallbackRegistrar callbackRegistrar); void buildCallbacksForEntity(Class entityClass, CallbackRegistrar callbackRegistrar);
void buildCallbacksForEmbeddable( void buildCallbacksForEmbeddable(
Property embeddableProperty, Property embeddableProperty,
String entityClassName, Class entityClass,
CallbackRegistrar callbackRegistrar); CallbackRegistrar callbackRegistrar);
void release(); void release();

View File

@ -11,7 +11,6 @@ import java.util.Set;
import javax.persistence.Column; import javax.persistence.Column;
import org.hibernate.MappingException; import org.hibernate.MappingException;
import org.hibernate.annotations.common.reflection.ClassLoadingException;
import org.hibernate.annotations.common.reflection.ReflectionManager; import org.hibernate.annotations.common.reflection.ReflectionManager;
import org.hibernate.annotations.common.reflection.XClass; import org.hibernate.annotations.common.reflection.XClass;
import org.hibernate.annotations.common.reflection.XProperty; import org.hibernate.annotations.common.reflection.XProperty;
@ -310,14 +309,7 @@ public class RevisionInfoConfiguration {
for ( PersistentClass persistentClass : metadata.getEntityBindings() ) { for ( PersistentClass persistentClass : metadata.getEntityBindings() ) {
// Ensure we're in POJO, not dynamic model, mapping. // Ensure we're in POJO, not dynamic model, mapping.
if (persistentClass.getClassName() != null) { if (persistentClass.getClassName() != null) {
XClass clazz; XClass clazz = reflectionManager.toXClass( persistentClass.getMappedClass() );
try {
clazz = reflectionManager.classForName( persistentClass.getClassName() );
}
catch (ClassLoadingException e) {
throw new MappingException( e );
}
final RevisionEntity revisionEntity = clazz.getAnnotation( RevisionEntity.class ); final RevisionEntity revisionEntity = clazz.getAnnotation( RevisionEntity.class );
if ( revisionEntity != null ) { if ( revisionEntity != null ) {
if (revisionEntityFound) { if (revisionEntityFound) {

View File

@ -22,6 +22,7 @@ import javax.persistence.JoinColumn;
import org.dom4j.Element; import org.dom4j.Element;
import org.hibernate.MappingException; import org.hibernate.MappingException;
import org.hibernate.annotations.common.reflection.ReflectionManager; import org.hibernate.annotations.common.reflection.ReflectionManager;
import org.hibernate.boot.registry.classloading.spi.ClassLoaderService;
import org.hibernate.envers.ModificationStore; import org.hibernate.envers.ModificationStore;
import org.hibernate.envers.RelationTargetAuditMode; import org.hibernate.envers.RelationTargetAuditMode;
import org.hibernate.envers.configuration.internal.metadata.reader.AuditedPropertiesReader; import org.hibernate.envers.configuration.internal.metadata.reader.AuditedPropertiesReader;
@ -658,9 +659,12 @@ public final class CollectionMetadataGenerator {
.getMetadataBuildingOptions() .getMetadataBuildingOptions()
.getReflectionManager(); .getReflectionManager();
final ClassLoaderService classLoaderService = mainGenerator.getGlobalCfg()
.getEnversService()
.getClassLoaderService();
new ComponentAuditedPropertiesReader( new ComponentAuditedPropertiesReader(
ModificationStore.FULL, ModificationStore.FULL,
new AuditedPropertiesReader.ComponentPropertiesSource( reflectionManager, component ), new AuditedPropertiesReader.ComponentPropertiesSource( classLoaderService, reflectionManager, component ),
auditData, mainGenerator.getGlobalCfg(), reflectionManager, "" auditData, mainGenerator.getGlobalCfg(), reflectionManager, ""
).read(); ).read();

View File

@ -7,7 +7,6 @@
package org.hibernate.envers.configuration.internal.metadata.reader; package org.hibernate.envers.configuration.internal.metadata.reader;
import org.hibernate.MappingException; import org.hibernate.MappingException;
import org.hibernate.annotations.common.reflection.ClassLoadingException;
import org.hibernate.annotations.common.reflection.ReflectionManager; import org.hibernate.annotations.common.reflection.ReflectionManager;
import org.hibernate.annotations.common.reflection.XClass; import org.hibernate.annotations.common.reflection.XClass;
import org.hibernate.envers.AuditTable; import org.hibernate.envers.AuditTable;
@ -96,8 +95,7 @@ public final class AnnotationsMetadataReader {
return auditData; return auditData;
} }
try { final XClass xclass = reflectionManager.toXClass( pc.getMappedClass() );
final XClass xclass = reflectionManager.classForName( pc.getClassName() );
final ModificationStore defaultStore = getDefaultAudited( xclass ); final ModificationStore defaultStore = getDefaultAudited( xclass );
if ( defaultStore != null ) { if ( defaultStore != null ) {
@ -115,10 +113,6 @@ public final class AnnotationsMetadataReader {
addAuditTable( xclass ); addAuditTable( xclass );
addAuditSecondaryTables( xclass ); addAuditSecondaryTables( xclass );
}
catch (ClassLoadingException e) {
throw new MappingException( e );
}
return auditData; return auditData;
} }

View File

@ -25,10 +25,11 @@ import javax.persistence.Version;
import org.hibernate.HibernateException; import org.hibernate.HibernateException;
import org.hibernate.MappingException; import org.hibernate.MappingException;
import org.hibernate.annotations.common.reflection.ClassLoadingException;
import org.hibernate.annotations.common.reflection.ReflectionManager; import org.hibernate.annotations.common.reflection.ReflectionManager;
import org.hibernate.annotations.common.reflection.XClass; import org.hibernate.annotations.common.reflection.XClass;
import org.hibernate.annotations.common.reflection.XProperty; import org.hibernate.annotations.common.reflection.XProperty;
import org.hibernate.boot.registry.classloading.spi.ClassLoaderService;
import org.hibernate.boot.registry.classloading.spi.ClassLoadingException;
import org.hibernate.envers.AuditJoinTable; import org.hibernate.envers.AuditJoinTable;
import org.hibernate.envers.AuditMappedBy; import org.hibernate.envers.AuditMappedBy;
import org.hibernate.envers.AuditOverride; import org.hibernate.envers.AuditOverride;
@ -432,8 +433,10 @@ public class AuditedPropertiesReader {
// Marking component properties as placed directly in class (not inside another component). // Marking component properties as placed directly in class (not inside another component).
componentData.setBeanName( null ); componentData.setBeanName( null );
final ClassLoaderService classLoaderService = globalCfg.getEnversService().getClassLoaderService();
final PersistentPropertiesSource componentPropertiesSource = new ComponentPropertiesSource( final PersistentPropertiesSource componentPropertiesSource = new ComponentPropertiesSource(
reflectionManager, classLoaderService, reflectionManager,
propertyValue propertyValue
); );
final AuditedPropertiesReader audPropReader = new AuditedPropertiesReader( final AuditedPropertiesReader audPropReader = new AuditedPropertiesReader(
@ -459,7 +462,10 @@ public class AuditedPropertiesReader {
componentPropertiesSource = new DynamicComponentSource( reflectionManager, propertyValue, property ); componentPropertiesSource = new DynamicComponentSource( reflectionManager, propertyValue, property );
} }
else { else {
componentPropertiesSource = new ComponentPropertiesSource( reflectionManager, propertyValue ); final ClassLoaderService classLoaderService = this.globalCfg.getEnversService().getClassLoaderService();
componentPropertiesSource = new ComponentPropertiesSource(
classLoaderService,
reflectionManager, propertyValue );
} }
final ComponentAuditedPropertiesReader audPropReader = new ComponentAuditedPropertiesReader( final ComponentAuditedPropertiesReader audPropReader = new ComponentAuditedPropertiesReader(
@ -786,14 +792,17 @@ public class AuditedPropertiesReader {
this.component = component; this.component = component;
} }
public ComponentPropertiesSource(ReflectionManager reflectionManager, Component component) { public ComponentPropertiesSource(
ClassLoaderService classLoaderService,
ReflectionManager reflectionManager,
Component component) {
try { try {
this.xclass = reflectionManager.classForName( component.getComponentClassName() ); Class<Object> objectClass = classLoaderService.classForName( component.getComponentClassName() );
this.xclass = reflectionManager.toXClass( objectClass );
} }
catch ( ClassLoadingException e ) { catch ( ClassLoadingException e ) {
throw new MappingException( e ); throw new MappingException( e );
} }
this.component = component; this.component = component;
} }

View File

@ -6,7 +6,7 @@
# #
hibernate.dialect org.hibernate.spatial.dialect.oracle.OracleSpatial10gDialect hibernate.dialect org.hibernate.spatial.dialect.oracle.OracleSpatial10gDialect
hibernate.connection.driver_class oracle.jdbc.driver.OracleDriver hibernate.connection.driver_class oracle.jdbc.OracleDriver
hibernate.connection.url jdbc:oracle:thin:@localhost:1521:ORCLCDB hibernate.connection.url jdbc:oracle:thin:@localhost:1521:ORCLCDB
hibernate.connection.username C##hibernate hibernate.connection.username C##hibernate
hibernate.connection.password hibernate hibernate.connection.password hibernate

View File

@ -6,7 +6,7 @@
# #
hibernate.dialect org.hibernate.spatial.dialect.oracle.OracleSpatial10gDialect hibernate.dialect org.hibernate.spatial.dialect.oracle.OracleSpatial10gDialect
hibernate.connection.driver_class oracle.jdbc.driver.OracleDriver hibernate.connection.driver_class oracle.jdbc.OracleDriver
hibernate.connection.url jdbc:oracle:thin:@localhost:1521:ORCLCDB hibernate.connection.url jdbc:oracle:thin:@localhost:1521:ORCLCDB
hibernate.connection.username C##hibernate hibernate.connection.username C##hibernate
hibernate.connection.password hibernate hibernate.connection.password hibernate

View File

@ -6,7 +6,7 @@
# #
hibernate.dialect org.hibernate.spatial.dialect.oracle.OracleSpatialSDO10gDialect hibernate.dialect org.hibernate.spatial.dialect.oracle.OracleSpatialSDO10gDialect
hibernate.connection.driver_class oracle.jdbc.driver.OracleDriver hibernate.connection.driver_class oracle.jdbc.OracleDriver
hibernate.connection.url jdbc:oracle:thin:@localhost:1521:ORCLCDB hibernate.connection.url jdbc:oracle:thin:@localhost:1521:ORCLCDB
hibernate.connection.username C##hibernate hibernate.connection.username C##hibernate
hibernate.connection.password hibernate hibernate.connection.password hibernate

View File

@ -49,13 +49,13 @@ hibernate.connection.password @jdbc.pass@
## ##
#hibernate.spatial.connection_finder org.hibernate.spatial.dialect.oracle.TestConnectionFinder #hibernate.spatial.connection_finder org.hibernate.spatial.dialect.oracle.TestConnectionFinder
#hibernate.dialect org.hibernate.spatial.dialect.oracle.OracleSpatial10gDialect #hibernate.dialect org.hibernate.spatial.dialect.oracle.OracleSpatial10gDialect
#hibernate.connection.driver_class oracle.jdbc.driver.OracleDriver #hibernate.connection.driver_class oracle.jdbc.OracleDriver
#hibernate.connection.url jdbc:oracle:thin:@localhost:1521/orcl12c #hibernate.connection.url jdbc:oracle:thin:@localhost:1521/orcl12c
#hibernate.connection.username C##hibernate #hibernate.connection.username C##hibernate
#hibernate.connection.password hibernate #hibernate.connection.password hibernate
#hibernate.dialect org.hibernate.spatial.dialect.oracle.OracleSpatialSDO10gDialect #hibernate.dialect org.hibernate.spatial.dialect.oracle.OracleSpatialSDO10gDialect
#hibernate.connection.driver_class oracle.jdbc.driver.OracleDriver #hibernate.connection.driver_class oracle.jdbc.OracleDriver
#hibernate.connection.url jdbc:oracle:thin:@localhost:1521/orcl12c #hibernate.connection.url jdbc:oracle:thin:@localhost:1521/orcl12c
#hibernate.connection.username C##hibernate #hibernate.connection.username C##hibernate
#hibernate.connection.password hibernate #hibernate.connection.password hibernate