From ac09de8c7215b7ce14d96ecb2ac23c153597d2e1 Mon Sep 17 00:00:00 2001 From: Christoph Strobl Date: Tue, 30 Jul 2024 14:03:17 +0200 Subject: [PATCH] Fix property lookup for projections on Kotlin types. This commit makes sure to use the target objects method to determine the property used for the projection. Closes: #3127 Original pull request: #3129 --- .../PropertyAccessingMethodInterceptor.java | 14 ++++++++--- ...tyAccessingMethodInterceptorUnitTests.java | 10 ++++++++ .../data/projection/WithIsNamedProperty.kt | 23 +++++++++++++++++++ 3 files changed, 44 insertions(+), 3 deletions(-) create mode 100644 src/test/kotlin/org/springframework/data/projection/WithIsNamedProperty.kt diff --git a/src/main/java/org/springframework/data/projection/PropertyAccessingMethodInterceptor.java b/src/main/java/org/springframework/data/projection/PropertyAccessingMethodInterceptor.java index 46a2b21f5..6f19a9d06 100644 --- a/src/main/java/org/springframework/data/projection/PropertyAccessingMethodInterceptor.java +++ b/src/main/java/org/springframework/data/projection/PropertyAccessingMethodInterceptor.java @@ -33,6 +33,7 @@ import org.springframework.util.ReflectionUtils; * @author Oliver Gierke * @author Mark Paluch * @author Johannes Englmeier + * @author Christoph Strobl * @since 1.10 */ class PropertyAccessingMethodInterceptor implements MethodInterceptor { @@ -54,12 +55,11 @@ class PropertyAccessingMethodInterceptor implements MethodInterceptor { @Override public Object invoke(@SuppressWarnings("null") MethodInvocation invocation) throws Throwable { - Method method = invocation.getMethod(); - - if (ReflectionUtils.isObjectMethod(method)) { + if (ReflectionUtils.isObjectMethod(invocation.getMethod())) { return invocation.proceed(); } + Method method = lookupTargetMethod(invocation, target.getWrappedClass()); PropertyDescriptor descriptor = BeanUtils.findPropertyForMethod(method); if (descriptor == null) { @@ -81,4 +81,12 @@ class PropertyAccessingMethodInterceptor implements MethodInterceptor { private static boolean isSetterMethod(Method method, PropertyDescriptor descriptor) { return method.equals(descriptor.getWriteMethod()); } + + private static Method lookupTargetMethod(MethodInvocation invocation, Class targetType) { + + Method method = BeanUtils.findMethod(targetType, invocation.getMethod().getName(), + invocation.getMethod().getParameterTypes()); + + return method != null ? method : invocation.getMethod(); + } } diff --git a/src/test/java/org/springframework/data/projection/PropertyAccessingMethodInterceptorUnitTests.java b/src/test/java/org/springframework/data/projection/PropertyAccessingMethodInterceptorUnitTests.java index c67cae151..d09f4b1ea 100755 --- a/src/test/java/org/springframework/data/projection/PropertyAccessingMethodInterceptorUnitTests.java +++ b/src/test/java/org/springframework/data/projection/PropertyAccessingMethodInterceptorUnitTests.java @@ -32,6 +32,7 @@ import org.springframework.beans.NotWritablePropertyException; * * @author Oliver Gierke * @author Mark Paluch + * @author Christoph Strobl */ @ExtendWith(MockitoExtension.class) class PropertyAccessingMethodInterceptorUnitTests { @@ -111,6 +112,15 @@ class PropertyAccessingMethodInterceptorUnitTests { .isThrownBy(() -> new PropertyAccessingMethodInterceptor(new Source()).invoke(invocation)); } + @Test // GH-3127 + void detectsKotlinPropertiesWithLeadingIsOnTargetType() throws Throwable { + + var source = new WithIsNamedProperty(true); + when(invocation.getMethod()).thenReturn(WithIsNamedPropertyProjection.class.getMethod("isValid")); + + assertThat(new PropertyAccessingMethodInterceptor(source).invoke(invocation)).isEqualTo(true); + } + static class Source { String firstname; diff --git a/src/test/kotlin/org/springframework/data/projection/WithIsNamedProperty.kt b/src/test/kotlin/org/springframework/data/projection/WithIsNamedProperty.kt new file mode 100644 index 000000000..fc9e236ee --- /dev/null +++ b/src/test/kotlin/org/springframework/data/projection/WithIsNamedProperty.kt @@ -0,0 +1,23 @@ +/* + * Copyright 2024 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.springframework.data.projection + +interface WithIsNamedPropertyProjection { + val isValid: Boolean +} + +class WithIsNamedProperty(val isValid : Boolean)