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 class StandardPojoEmbeddableRepresentationStrategy extends AbstractEmbedd
|
|||
|
||||
@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 @@ public class StandardPojoEntityRepresentationStrategy implements EntityRepresent
|
|||
}
|
||||
|
||||
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…
Reference in New Issue