DATACMNS-1177 - Parameter.isDynamicProjectionParameter() now uses unwrapped type instead of actual type.
When trying to determine if a parameter is a dynamic projection parameter, i.e. the parameter of type Class that determines the projection to use, now the type parameter of that method parameter gets compared with the unwrapped return type. Therefore this works now not only for Maps and Collections but also for the various wrappers defined in QueryExecutionConverters. Moved the method for unwrapping the return type from AbstractRepositoryMetadata to QueryExecutionConverters in order to make it available to every class needing it. This also puts it closer to the data it is working on. Original pull request: #250.
This commit is contained in:
committed by
Oliver Gierke
parent
2b4ef1a555
commit
79709629ef
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2011-2016 the original author or authors.
|
||||
* Copyright 2011-2017 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.
|
||||
@@ -19,7 +19,6 @@ import java.lang.reflect.Method;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collections;
|
||||
import java.util.Set;
|
||||
import java.util.stream.Stream;
|
||||
|
||||
import org.springframework.data.domain.Pageable;
|
||||
import org.springframework.data.repository.Repository;
|
||||
@@ -37,6 +36,7 @@ import org.springframework.util.Assert;
|
||||
*
|
||||
* @author Oliver Gierke
|
||||
* @author Thomas Darimont
|
||||
* @author Jens Schauder
|
||||
*/
|
||||
public abstract class AbstractRepositoryMetadata implements RepositoryMetadata {
|
||||
|
||||
@@ -79,7 +79,7 @@ public abstract class AbstractRepositoryMetadata implements RepositoryMetadata {
|
||||
* @see org.springframework.data.repository.core.RepositoryMetadata#getReturnedDomainClass(java.lang.reflect.Method)
|
||||
*/
|
||||
public Class<?> getReturnedDomainClass(Method method) {
|
||||
return unwrapWrapperTypes(typeInformation.getReturnType(method));
|
||||
return QueryExecutionConverters.unwrapWrapperTypes(typeInformation.getReturnType(method)).getType();
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -128,20 +128,4 @@ public abstract class AbstractRepositoryMetadata implements RepositoryMetadata {
|
||||
public boolean isReactiveRepository() {
|
||||
return ReactiveWrappers.usesReactiveType(repositoryInterface);
|
||||
}
|
||||
|
||||
/**
|
||||
* Recursively unwraps well known wrapper types from the given {@link TypeInformation}.
|
||||
*
|
||||
* @param type must not be {@literal null}.
|
||||
* @return
|
||||
*/
|
||||
private static Class<?> unwrapWrapperTypes(TypeInformation<?> type) {
|
||||
|
||||
Class<?> rawType = type.getType();
|
||||
|
||||
boolean needToUnwrap = Iterable.class.isAssignableFrom(rawType) || rawType.isArray()
|
||||
|| QueryExecutionConverters.supports(rawType) || Stream.class.isAssignableFrom(rawType);
|
||||
|
||||
return needToUnwrap ? unwrapWrapperTypes(type.getRequiredComponentType()) : rawType;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2008-2015 the original author or authors.
|
||||
* Copyright 2008-2017 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.
|
||||
@@ -36,6 +36,7 @@ import org.springframework.util.Assert;
|
||||
*
|
||||
* @author Oliver Gierke
|
||||
* @author Mark Paluch
|
||||
* @author Jens Schauder
|
||||
*/
|
||||
public class Parameter {
|
||||
|
||||
@@ -207,7 +208,8 @@ public class Parameter {
|
||||
|
||||
TypeInformation<?> bound = parameterTypes.getTypeArguments().get(0);
|
||||
TypeInformation<Object> returnType = ClassTypeInformation.fromReturnTypeOf(method);
|
||||
return bound.equals(returnType.getActualType());
|
||||
|
||||
return bound.equals(QueryExecutionConverters.unwrapWrapperTypes(returnType));
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -35,6 +35,7 @@ import java.util.Set;
|
||||
import java.util.concurrent.CompletableFuture;
|
||||
import java.util.concurrent.Future;
|
||||
import java.util.stream.Collectors;
|
||||
import java.util.stream.Stream;
|
||||
|
||||
import javax.annotation.Nonnull;
|
||||
|
||||
@@ -47,6 +48,7 @@ import org.springframework.data.domain.Page;
|
||||
import org.springframework.data.domain.Slice;
|
||||
import org.springframework.data.util.StreamUtils;
|
||||
import org.springframework.data.util.Streamable;
|
||||
import org.springframework.data.util.TypeInformation;
|
||||
import org.springframework.lang.Nullable;
|
||||
import org.springframework.scheduling.annotation.AsyncResult;
|
||||
import org.springframework.util.Assert;
|
||||
@@ -76,6 +78,7 @@ import com.google.common.base.Optional;
|
||||
* @author Mark Paluch
|
||||
* @author Christoph Strobl
|
||||
* @author Maciek Opała
|
||||
* @author Jens Schauder
|
||||
* @since 1.8
|
||||
* @see ReactiveWrappers
|
||||
*/
|
||||
@@ -285,6 +288,23 @@ public abstract class QueryExecutionConverters {
|
||||
return source;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recursively unwraps well known wrapper types from the given {@link TypeInformation}.
|
||||
*
|
||||
* @param type must not be {@literal null}.
|
||||
*/
|
||||
public static TypeInformation<?> unwrapWrapperTypes(TypeInformation<?> type) {
|
||||
|
||||
Assert.notNull(type, "type must not be null");
|
||||
|
||||
Class<?> rawType = type.getType();
|
||||
|
||||
boolean needToUnwrap = Iterable.class.isAssignableFrom(rawType) || rawType.isArray() || supports(rawType)
|
||||
|| Stream.class.isAssignableFrom(rawType);
|
||||
|
||||
return needToUnwrap ? unwrapWrapperTypes(type.getRequiredComponentType()) : type;
|
||||
}
|
||||
|
||||
/**
|
||||
* Base class for converters that create instances of wrapper types such as Google Guava's and JDK 8's
|
||||
* {@code Optional} types.
|
||||
|
||||
Reference in New Issue
Block a user