mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-16 16:15:06 +00:00
Use Property#getPropertyAccessStrategy which internally delegates to BuiltInPropertyAccessStrategies to handle enhanced cases
This commit is contained in:
parent
8e26756cce
commit
71f666f0b6
@ -83,16 +83,10 @@ public ReflectionOptimizer getReflectionOptimizer() {
|
||||
|
||||
@Override
|
||||
protected PropertyAccess buildPropertyAccess(Property bootAttributeDescriptor) {
|
||||
PropertyAccessStrategy strategy = null;
|
||||
final String propertyAccessorName = bootAttributeDescriptor.getPropertyAccessorName();
|
||||
final BuiltInPropertyAccessStrategies namedStrategy = BuiltInPropertyAccessStrategies.interpret(
|
||||
propertyAccessorName );
|
||||
if ( namedStrategy != null ) {
|
||||
strategy = namedStrategy.getStrategy();
|
||||
}
|
||||
PropertyAccessStrategy strategy = bootAttributeDescriptor.getPropertyAccessStrategy( getEmbeddableJavaTypeDescriptor().getJavaTypeClass() );
|
||||
|
||||
if ( strategy == null ) {
|
||||
|
||||
final String propertyAccessorName = bootAttributeDescriptor.getPropertyAccessorName();
|
||||
if ( StringHelper.isNotEmpty( propertyAccessorName ) ) {
|
||||
|
||||
// handle explicitly specified attribute accessor
|
||||
|
@ -320,17 +320,10 @@ private ReflectionOptimizer resolveReflectionOptimizer(
|
||||
}
|
||||
|
||||
private PropertyAccess makePropertyAccess(Property bootAttributeDescriptor) {
|
||||
PropertyAccessStrategy strategy = null;
|
||||
|
||||
final String propertyAccessorName = bootAttributeDescriptor.getPropertyAccessorName();
|
||||
final BuiltInPropertyAccessStrategies namedStrategy = BuiltInPropertyAccessStrategies.interpret(
|
||||
propertyAccessorName );
|
||||
|
||||
if ( namedStrategy != null ) {
|
||||
strategy = namedStrategy.getStrategy();
|
||||
}
|
||||
PropertyAccessStrategy strategy = bootAttributeDescriptor.getPropertyAccessStrategy( mappedJtd.getJavaTypeClass() );
|
||||
|
||||
if ( strategy == null ) {
|
||||
final String propertyAccessorName = bootAttributeDescriptor.getPropertyAccessorName();
|
||||
if ( StringHelper.isNotEmpty( propertyAccessorName ) ) {
|
||||
// handle explicitly specified attribute accessor
|
||||
strategy = strategySelector.resolveStrategy( PropertyAccessStrategy.class, propertyAccessorName );
|
||||
|
Loading…
x
Reference in New Issue
Block a user