Merge branch '5.1.x'
This commit is contained in:
@@ -138,6 +138,7 @@ public class ReflectivePropertyAccessor implements PropertyAccessor {
|
||||
// The readerCache will only contain gettable properties (let's not worry about setters for now).
|
||||
Property property = new Property(type, method, null);
|
||||
TypeDescriptor typeDescriptor = new TypeDescriptor(property);
|
||||
method = ClassUtils.getInterfaceMethodIfPossible(method);
|
||||
this.readerCache.put(cacheKey, new InvokerPair(method, typeDescriptor));
|
||||
this.typeDescriptorCache.put(cacheKey, typeDescriptor);
|
||||
return true;
|
||||
@@ -180,6 +181,7 @@ public class ReflectivePropertyAccessor implements PropertyAccessor {
|
||||
// The readerCache will only contain gettable properties (let's not worry about setters for now).
|
||||
Property property = new Property(type, method, null);
|
||||
TypeDescriptor typeDescriptor = new TypeDescriptor(property);
|
||||
method = ClassUtils.getInterfaceMethodIfPossible(method);
|
||||
invoker = new InvokerPair(method, typeDescriptor);
|
||||
this.lastReadInvokerPair = invoker;
|
||||
this.readerCache.put(cacheKey, invoker);
|
||||
@@ -239,6 +241,7 @@ public class ReflectivePropertyAccessor implements PropertyAccessor {
|
||||
// Treat it like a property
|
||||
Property property = new Property(type, null, method);
|
||||
TypeDescriptor typeDescriptor = new TypeDescriptor(property);
|
||||
method = ClassUtils.getInterfaceMethodIfPossible(method);
|
||||
this.writerCache.put(cacheKey, method);
|
||||
this.typeDescriptorCache.put(cacheKey, typeDescriptor);
|
||||
return true;
|
||||
@@ -287,6 +290,7 @@ public class ReflectivePropertyAccessor implements PropertyAccessor {
|
||||
if (method == null) {
|
||||
method = findSetterForProperty(name, type, target);
|
||||
if (method != null) {
|
||||
method = ClassUtils.getInterfaceMethodIfPossible(method);
|
||||
cachedMember = method;
|
||||
this.writerCache.put(cacheKey, cachedMember);
|
||||
}
|
||||
@@ -414,13 +418,24 @@ public class ReflectivePropertyAccessor implements PropertyAccessor {
|
||||
method.getParameterCount() == numberOfParams &&
|
||||
(!mustBeStatic || Modifier.isStatic(method.getModifiers())) &&
|
||||
(requiredReturnTypes.isEmpty() || requiredReturnTypes.contains(method.getReturnType()))) {
|
||||
return ClassUtils.getInterfaceMethodIfPossible(method);
|
||||
return method;
|
||||
}
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return class methods ordered with non-bridge methods appearing higher.
|
||||
*/
|
||||
private Method[] getSortedMethods(Class<?> clazz) {
|
||||
return this.sortedMethodsCache.computeIfAbsent(clazz, key -> {
|
||||
Method[] methods = key.getMethods();
|
||||
Arrays.sort(methods, (o1, o2) -> (o1.isBridge() == o2.isBridge() ? 0 : (o1.isBridge() ? 1 : -1)));
|
||||
return methods;
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the given {@code Method} is a candidate for property access
|
||||
* on an instance of the given target class.
|
||||
@@ -434,17 +449,6 @@ public class ReflectivePropertyAccessor implements PropertyAccessor {
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return class methods ordered with non-bridge methods appearing higher.
|
||||
*/
|
||||
private Method[] getSortedMethods(Class<?> clazz) {
|
||||
return this.sortedMethodsCache.computeIfAbsent(clazz, key -> {
|
||||
Method[] methods = key.getMethods();
|
||||
Arrays.sort(methods, (o1, o2) -> (o1.isBridge() == o2.isBridge() ? 0 : (o1.isBridge() ? 1 : -1)));
|
||||
return methods;
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the method suffixes for a given property name. The default implementation
|
||||
* uses JavaBean conventions with additional support for properties of the form 'xY'
|
||||
@@ -536,7 +540,9 @@ public class ReflectivePropertyAccessor implements PropertyAccessor {
|
||||
if (method == null) {
|
||||
method = findGetterForProperty(name, clazz, target);
|
||||
if (method != null) {
|
||||
invocationTarget = new InvokerPair(method, new TypeDescriptor(new MethodParameter(method, -1)));
|
||||
TypeDescriptor typeDescriptor = new TypeDescriptor(new MethodParameter(method, -1));
|
||||
method = ClassUtils.getInterfaceMethodIfPossible(method);
|
||||
invocationTarget = new InvokerPair(method, typeDescriptor);
|
||||
ReflectionUtils.makeAccessible(method);
|
||||
this.readerCache.put(cacheKey, invocationTarget);
|
||||
}
|
||||
|
||||
@@ -58,6 +58,7 @@ import org.springframework.expression.spel.support.ReflectivePropertyAccessor;
|
||||
import org.springframework.expression.spel.support.StandardEvaluationContext;
|
||||
import org.springframework.expression.spel.support.StandardTypeLocator;
|
||||
import org.springframework.expression.spel.testresources.le.div.mod.reserved.Reserver;
|
||||
import org.springframework.lang.Nullable;
|
||||
import org.springframework.util.ObjectUtils;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
@@ -1177,9 +1178,13 @@ public class SpelReproTests extends AbstractExpressionTests {
|
||||
public void SPR9994_bridgeMethods() throws Exception {
|
||||
ReflectivePropertyAccessor accessor = new ReflectivePropertyAccessor();
|
||||
StandardEvaluationContext context = new StandardEvaluationContext();
|
||||
Object target = new GenericImplementation();
|
||||
GenericImplementation target = new GenericImplementation();
|
||||
accessor.write(context, target, "property", "1");
|
||||
assertThat(target.value).isEqualTo(1);
|
||||
TypedValue value = accessor.read(context, target, "property");
|
||||
assertThat(value.getValue()).isEqualTo(1);
|
||||
assertThat(value.getTypeDescriptor().getType()).isEqualTo(Integer.class);
|
||||
assertThat(value.getTypeDescriptor().getAnnotations()).isNotEmpty();
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -1188,6 +1193,7 @@ public class SpelReproTests extends AbstractExpressionTests {
|
||||
StandardEvaluationContext context = new StandardEvaluationContext();
|
||||
Object target = new OnlyBridgeMethod();
|
||||
TypedValue value = accessor.read(context, target, "property");
|
||||
assertThat(value.getValue()).isNull();
|
||||
assertThat(value.getTypeDescriptor().getType()).isEqualTo(Integer.class);
|
||||
}
|
||||
|
||||
@@ -1196,7 +1202,7 @@ public class SpelReproTests extends AbstractExpressionTests {
|
||||
ExpressionParser parser = new SpelExpressionParser();
|
||||
StandardEvaluationContext evaluationContext = new StandardEvaluationContext(new BooleanHolder());
|
||||
Class<?> valueType = parser.parseExpression("simpleProperty").getValueType(evaluationContext);
|
||||
assertThat(valueType).isNotNull();
|
||||
assertThat(valueType).isEqualTo(Boolean.class);
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -1204,7 +1210,7 @@ public class SpelReproTests extends AbstractExpressionTests {
|
||||
ExpressionParser parser = new SpelExpressionParser();
|
||||
StandardEvaluationContext evaluationContext = new StandardEvaluationContext(new BooleanHolder());
|
||||
Object value = parser.parseExpression("simpleProperty").getValue(evaluationContext);
|
||||
assertThat(value).isNotNull();
|
||||
assertThat(value).isInstanceOf(Boolean.class);
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -1212,7 +1218,7 @@ public class SpelReproTests extends AbstractExpressionTests {
|
||||
ExpressionParser parser = new SpelExpressionParser();
|
||||
StandardEvaluationContext evaluationContext = new StandardEvaluationContext(new BooleanHolder());
|
||||
Class<?> valueType = parser.parseExpression("primitiveProperty").getValueType(evaluationContext);
|
||||
assertThat(valueType).isNotNull();
|
||||
assertThat(valueType).isEqualTo(Boolean.class);
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -1220,7 +1226,7 @@ public class SpelReproTests extends AbstractExpressionTests {
|
||||
ExpressionParser parser = new SpelExpressionParser();
|
||||
StandardEvaluationContext evaluationContext = new StandardEvaluationContext(new BooleanHolder());
|
||||
Object value = parser.parseExpression("primitiveProperty").getValue(evaluationContext);
|
||||
assertThat(value).isNotNull();
|
||||
assertThat(value).isInstanceOf(Boolean.class);
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -2172,15 +2178,25 @@ public class SpelReproTests extends AbstractExpressionTests {
|
||||
|
||||
private interface GenericInterface<T extends Number> {
|
||||
|
||||
void setProperty(T value);
|
||||
|
||||
T getProperty();
|
||||
}
|
||||
|
||||
|
||||
private static class GenericImplementation implements GenericInterface<Integer> {
|
||||
|
||||
int value;
|
||||
|
||||
@Override
|
||||
public void setProperty(Integer value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
@Override
|
||||
@Nullable
|
||||
public Integer getProperty() {
|
||||
return null;
|
||||
return this.value;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user