Introduce Limit type to limit repository query results.
We now accept Limit as type to express dynamic repository query limits. Closes #2827 Original pull request: #2836
This commit is contained in:
committed by
Mark Paluch
parent
0d9a91123a
commit
a5408a478d
121
src/main/java/org/springframework/data/domain/Limit.java
Normal file
121
src/main/java/org/springframework/data/domain/Limit.java
Normal file
@@ -0,0 +1,121 @@
|
||||
/*
|
||||
* Copyright 2023 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.domain;
|
||||
|
||||
import org.springframework.data.domain.Limit.Limited;
|
||||
import org.springframework.data.domain.Limit.Unlimited;
|
||||
import org.springframework.util.ClassUtils;
|
||||
|
||||
/**
|
||||
* {@link Limit} represents the maximum value up to which an operation should continue processing. It may be used for
|
||||
* defining the {@link #max() maximum} number of results within a repository finder method or if applicable a template
|
||||
* operation.
|
||||
* <p>
|
||||
* A {@link Limit#isUnlimited()} is used to indicate that there is no {@link Limit} defined, which should be favoured
|
||||
* over using {@literal null} or {@link java.util.Optional#empty()} to indicate the absence of an actual {@link Limit}.
|
||||
* </p>
|
||||
* {@link Limit} itself does not make assumptions about the actual {@link #max()} value sign. This means that a negative
|
||||
* value may be valid within a defined context. Implementations should override {@link #isUnlimited()} to fit their
|
||||
* needs and enforce restrictions if needed.
|
||||
*
|
||||
* @author Christoph Strobl
|
||||
* @since 3.2
|
||||
*/
|
||||
public sealed interface Limit permits Limited, Unlimited {
|
||||
|
||||
/**
|
||||
* @return the max number of potential results.
|
||||
*/
|
||||
int max();
|
||||
|
||||
/**
|
||||
* @return {@literal true} if no limiting (maximum value) should be applied.
|
||||
*/
|
||||
default boolean isUnlimited() {
|
||||
return Unlimited.INSTANCE.equals(this);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return a {@link Limit} instance that does not define {@link #max()} and answers {@link #isUnlimited()} with
|
||||
* {@literal true}.
|
||||
*/
|
||||
static Limit unlimited() {
|
||||
return Unlimited.INSTANCE;
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new {@link Limit} from the given {@literal max} value.
|
||||
*
|
||||
* @param max the maximum value.
|
||||
* @return new instance of {@link Limit}.
|
||||
*/
|
||||
static Limit of(int max) {
|
||||
return new Limited(max);
|
||||
}
|
||||
|
||||
final class Limited implements Limit {
|
||||
|
||||
private final int max;
|
||||
|
||||
Limited(int max) {
|
||||
this.max = max;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int max() {
|
||||
return max;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
|
||||
if (obj == null) {
|
||||
return false;
|
||||
}
|
||||
if (!ClassUtils.isAssignable(Limit.class, obj.getClass())) {
|
||||
return false;
|
||||
}
|
||||
Limit that = (Limit) obj;
|
||||
if (this.isUnlimited() && that.isUnlimited()) {
|
||||
return true;
|
||||
}
|
||||
return max() == that.max();
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return (int) (max ^ (max >>> 32));
|
||||
}
|
||||
}
|
||||
|
||||
final class Unlimited implements Limit {
|
||||
|
||||
static final Limit INSTANCE = new Unlimited();
|
||||
|
||||
Unlimited() {}
|
||||
|
||||
@Override
|
||||
public int max() {
|
||||
throw new IllegalStateException(
|
||||
"Unlimited does not define 'max'. Please check 'isUnlimited' before attempting to read 'max'");
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isUnlimited() {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -24,6 +24,7 @@ import org.springframework.util.Assert;
|
||||
*
|
||||
* @author Oliver Gierke
|
||||
* @author Mark Paluch
|
||||
* @author Christoph Strobl
|
||||
*/
|
||||
public interface Pageable {
|
||||
|
||||
@@ -33,7 +34,18 @@ public interface Pageable {
|
||||
* @return
|
||||
*/
|
||||
static Pageable unpaged() {
|
||||
return Unpaged.INSTANCE;
|
||||
return unpaged(Sort.unsorted());
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a {@link Pageable} instance representing no pagination setup having a defined result {@link Sort order}.
|
||||
*
|
||||
* @param sort must not be {@literal null}, use {@link Sort#unsorted()} if needed.
|
||||
* @return never {@literal null}.
|
||||
* @since 3.2
|
||||
*/
|
||||
static Pageable unpaged(Sort sort) {
|
||||
return Unpaged.sorted(sort);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -19,10 +19,21 @@ package org.springframework.data.domain;
|
||||
* {@link Pageable} implementation to represent the absence of pagination information.
|
||||
*
|
||||
* @author Oliver Gierke
|
||||
* @author Christoph Strobl
|
||||
*/
|
||||
enum Unpaged implements Pageable {
|
||||
final class Unpaged implements Pageable {
|
||||
|
||||
INSTANCE;
|
||||
private static final Pageable UNSORTED = new Unpaged(Sort.unsorted());
|
||||
|
||||
private final Sort sort;
|
||||
|
||||
Unpaged(Sort sort) {
|
||||
this.sort = sort;
|
||||
}
|
||||
|
||||
static Pageable sorted(Sort sort) {
|
||||
return sort.isSorted() ? new Unpaged(sort) : UNSORTED;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isPaged() {
|
||||
@@ -46,7 +57,7 @@ enum Unpaged implements Pageable {
|
||||
|
||||
@Override
|
||||
public Sort getSort() {
|
||||
return Sort.unsorted();
|
||||
return sort;
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -78,5 +89,4 @@ enum Unpaged implements Pageable {
|
||||
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -25,6 +25,7 @@ import java.util.Optional;
|
||||
|
||||
import org.springframework.core.MethodParameter;
|
||||
import org.springframework.core.ResolvableType;
|
||||
import org.springframework.data.domain.Limit;
|
||||
import org.springframework.data.domain.Pageable;
|
||||
import org.springframework.data.domain.ScrollPosition;
|
||||
import org.springframework.data.domain.Sort;
|
||||
@@ -58,7 +59,7 @@ public class Parameter {
|
||||
|
||||
static {
|
||||
|
||||
List<Class<?>> types = new ArrayList<>(Arrays.asList(ScrollPosition.class, Pageable.class, Sort.class));
|
||||
List<Class<?>> types = new ArrayList<>(Arrays.asList(ScrollPosition.class, Pageable.class, Sort.class, Limit.class));
|
||||
|
||||
// consider Kotlin Coroutines Continuation a special parameter. That parameter is synthetic and should not get
|
||||
// bound to any query.
|
||||
@@ -221,6 +222,16 @@ public class Parameter {
|
||||
return Sort.class.isAssignableFrom(getType());
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns whether the {@link Parameter} is a {@link Limit} parameter.
|
||||
*
|
||||
* @return
|
||||
* @since 3.2
|
||||
*/
|
||||
boolean isLimit() {
|
||||
return Limit.class.isAssignableFrom(getType());
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns whether the given {@link MethodParameter} is a dynamic projection parameter, which means it carries a
|
||||
* dynamic type parameter which is identical to the type parameter of the actually returned type.
|
||||
|
||||
@@ -17,6 +17,7 @@ package org.springframework.data.repository.query;
|
||||
|
||||
import java.util.Iterator;
|
||||
|
||||
import org.springframework.data.domain.Limit;
|
||||
import org.springframework.data.domain.Pageable;
|
||||
import org.springframework.data.domain.ScrollPosition;
|
||||
import org.springframework.data.domain.Sort;
|
||||
@@ -54,6 +55,22 @@ public interface ParameterAccessor extends Iterable<Object> {
|
||||
*/
|
||||
Sort getSort();
|
||||
|
||||
/**
|
||||
* Returns the {@link Limit} instance to be used for query creation. If no {@link java.lang.reflect.Parameter}
|
||||
* assignable to {@link Limit} can be found {@link Limit} will be created out of {@link Pageable#getPageSize()} if
|
||||
* present.
|
||||
*
|
||||
* @return {@link Limit#unlimited()} by default.
|
||||
* @since 3.2
|
||||
*/
|
||||
default Limit getLimit() {
|
||||
|
||||
if (getPageable().isUnpaged()) {
|
||||
return Limit.unlimited();
|
||||
}
|
||||
return Limit.of(getPageable().getPageSize());
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the dynamic projection type to be used when executing the query or {@literal null} if none is defined.
|
||||
*
|
||||
|
||||
@@ -27,6 +27,7 @@ import java.util.function.Function;
|
||||
import org.springframework.core.DefaultParameterNameDiscoverer;
|
||||
import org.springframework.core.MethodParameter;
|
||||
import org.springframework.core.ParameterNameDiscoverer;
|
||||
import org.springframework.data.domain.Limit;
|
||||
import org.springframework.data.domain.Pageable;
|
||||
import org.springframework.data.domain.ScrollPosition;
|
||||
import org.springframework.data.domain.Sort;
|
||||
@@ -43,7 +44,7 @@ import org.springframework.util.Assert;
|
||||
*/
|
||||
public abstract class Parameters<S extends Parameters<S, T>, T extends Parameter> implements Streamable<T> {
|
||||
|
||||
public static final List<Class<?>> TYPES = Arrays.asList(ScrollPosition.class, Pageable.class, Sort.class);
|
||||
public static final List<Class<?>> TYPES = Arrays.asList(ScrollPosition.class, Pageable.class, Sort.class, Limit.class);
|
||||
|
||||
private static final String PARAM_ON_SPECIAL = format("You must not use @%s on a parameter typed %s or %s",
|
||||
Param.class.getSimpleName(), Pageable.class.getSimpleName(), Sort.class.getSimpleName());
|
||||
@@ -56,6 +57,7 @@ public abstract class Parameters<S extends Parameters<S, T>, T extends Parameter
|
||||
private final int scrollPositionIndex;
|
||||
private final int pageableIndex;
|
||||
private final int sortIndex;
|
||||
private final int limitIndex;
|
||||
private final List<T> parameters;
|
||||
private final Lazy<S> bindable;
|
||||
|
||||
@@ -96,6 +98,7 @@ public abstract class Parameters<S extends Parameters<S, T>, T extends Parameter
|
||||
int scrollPositionIndex = -1;
|
||||
int pageableIndex = -1;
|
||||
int sortIndex = -1;
|
||||
int limitIndex = -1;
|
||||
|
||||
for (int i = 0; i < parameterCount; i++) {
|
||||
|
||||
@@ -126,12 +129,17 @@ public abstract class Parameters<S extends Parameters<S, T>, T extends Parameter
|
||||
sortIndex = i;
|
||||
}
|
||||
|
||||
if (Limit.class.isAssignableFrom(parameter.getType())) {
|
||||
limitIndex = i;
|
||||
}
|
||||
|
||||
parameters.add(parameter);
|
||||
}
|
||||
|
||||
this.scrollPositionIndex = scrollPositionIndex;
|
||||
this.pageableIndex = pageableIndex;
|
||||
this.sortIndex = sortIndex;
|
||||
this.limitIndex = limitIndex;
|
||||
this.bindable = Lazy.of(this::getBindable);
|
||||
|
||||
assertEitherAllParamAnnotatedOrNone();
|
||||
@@ -149,6 +157,7 @@ public abstract class Parameters<S extends Parameters<S, T>, T extends Parameter
|
||||
int scrollPositionIndexTemp = -1;
|
||||
int pageableIndexTemp = -1;
|
||||
int sortIndexTemp = -1;
|
||||
int limitIndexTmp = -1;
|
||||
int dynamicProjectionTemp = -1;
|
||||
|
||||
for (int i = 0; i < originals.size(); i++) {
|
||||
@@ -159,12 +168,14 @@ public abstract class Parameters<S extends Parameters<S, T>, T extends Parameter
|
||||
scrollPositionIndexTemp = original.isScrollPosition() ? i : -1;
|
||||
pageableIndexTemp = original.isPageable() ? i : -1;
|
||||
sortIndexTemp = original.isSort() ? i : -1;
|
||||
limitIndexTmp = original.isLimit() ? i : -1;
|
||||
dynamicProjectionTemp = original.isDynamicProjectionParameter() ? i : -1;
|
||||
}
|
||||
|
||||
this.scrollPositionIndex = scrollPositionIndexTemp;
|
||||
this.pageableIndex = pageableIndexTemp;
|
||||
this.sortIndex = sortIndexTemp;
|
||||
this.limitIndex = limitIndexTmp;
|
||||
this.dynamicProjectionIndex = dynamicProjectionTemp;
|
||||
this.bindable = Lazy.of(() -> (S) this);
|
||||
}
|
||||
@@ -255,6 +266,27 @@ public abstract class Parameters<S extends Parameters<S, T>, T extends Parameter
|
||||
return sortIndex != -1;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns whether the method the {@link Parameters} was created for contains a {@link Limit} argument.
|
||||
*
|
||||
* @return
|
||||
* @since 3.2
|
||||
*/
|
||||
public boolean hasLimitParameter() {
|
||||
return getLimitIndex() != -1;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the index of the {@link Limit} {@link Method} parameter if available. Will return {@literal -1} if there is
|
||||
* no {@link Limit} argument in the {@link Method}'s parameter list.
|
||||
*
|
||||
* @return
|
||||
* @since 3.2
|
||||
*/
|
||||
public int getLimitIndex() {
|
||||
return limitIndex;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the index of the parameter that represents the dynamic projection type. Will return {@literal -1} if no
|
||||
* such parameter exists.
|
||||
|
||||
@@ -17,6 +17,8 @@ package org.springframework.data.repository.query;
|
||||
|
||||
import java.util.Iterator;
|
||||
|
||||
import org.springframework.data.domain.Limit;
|
||||
import org.springframework.data.domain.PageRequest;
|
||||
import org.springframework.data.domain.Pageable;
|
||||
import org.springframework.data.domain.ScrollPosition;
|
||||
import org.springframework.data.domain.Sort;
|
||||
@@ -111,13 +113,20 @@ public class ParametersParameterAccessor implements ParameterAccessor {
|
||||
@Override
|
||||
public Pageable getPageable() {
|
||||
|
||||
if (!parameters.hasPageableParameter()) {
|
||||
return Pageable.unpaged();
|
||||
if (parameters.hasPageableParameter()) {
|
||||
|
||||
Pageable pageable = (Pageable) values[parameters.getPageableIndex()];
|
||||
return pageable == null ? Pageable.unpaged() : pageable;
|
||||
}
|
||||
|
||||
Pageable pageable = (Pageable) values[parameters.getPageableIndex()];
|
||||
Limit limit = parameters.hasLimitParameter() ? getLimit() : Limit.unlimited();
|
||||
Sort sort = parameters.hasSortParameter() ? getSort() : Sort.unsorted();
|
||||
|
||||
return pageable == null ? Pageable.unpaged() : pageable;
|
||||
if (limit.isUnlimited()) {
|
||||
return Pageable.unpaged(sort);
|
||||
}
|
||||
|
||||
return PageRequest.of(0, limit.max(), sort);
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -136,6 +145,24 @@ public class ParametersParameterAccessor implements ParameterAccessor {
|
||||
return Sort.unsorted();
|
||||
}
|
||||
|
||||
@Override
|
||||
public Limit getLimit() {
|
||||
|
||||
if (parameters.hasLimitParameter()) {
|
||||
|
||||
Limit limit = (Limit) values[parameters.getLimitIndex()];
|
||||
return limit == null ? Limit.unlimited() : limit;
|
||||
}
|
||||
|
||||
if (parameters.hasPageableParameter()) {
|
||||
|
||||
Pageable pageable = (Pageable) values[parameters.getPageableIndex()];
|
||||
return pageable.isPaged() ? Limit.of(pageable.getPageSize()) : Limit.unlimited();
|
||||
}
|
||||
|
||||
return Limit.unlimited();
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the dynamic projection type if available, {@literal null} otherwise.
|
||||
*
|
||||
|
||||
@@ -20,8 +20,10 @@ import static org.springframework.data.repository.util.ClassUtils.*;
|
||||
import java.lang.reflect.Method;
|
||||
import java.util.Collections;
|
||||
import java.util.Set;
|
||||
import java.util.function.Predicate;
|
||||
import java.util.stream.Stream;
|
||||
|
||||
import org.springframework.data.domain.Limit;
|
||||
import org.springframework.data.domain.Page;
|
||||
import org.springframework.data.domain.Pageable;
|
||||
import org.springframework.data.domain.ScrollPosition;
|
||||
@@ -85,36 +87,6 @@ public class QueryMethod {
|
||||
this.metadata = metadata;
|
||||
this.parameters = createParameters(method);
|
||||
|
||||
if (hasParameterOfType(method, Pageable.class)) {
|
||||
|
||||
if (!isStreamQuery()) {
|
||||
assertReturnTypeAssignable(method, QueryExecutionConverters.getAllowedPageableTypes());
|
||||
}
|
||||
|
||||
if (hasParameterOfType(method, Sort.class)) {
|
||||
throw new IllegalStateException(String.format("Method must not have Pageable *and* Sort parameters. "
|
||||
+ "Use sorting capabilities on Pageable instead; Offending method: %s", method));
|
||||
}
|
||||
}
|
||||
|
||||
if (hasParameterOfType(method, ScrollPosition.class)) {
|
||||
assertReturnTypeAssignable(method, Collections.singleton(Window.class));
|
||||
}
|
||||
|
||||
Assert.notNull(this.parameters,
|
||||
() -> String.format("Parameters extracted from method '%s' must not be null", method.getName()));
|
||||
|
||||
if (isPageQuery()) {
|
||||
Assert.isTrue(this.parameters.hasPageableParameter(),
|
||||
String.format("Paging query needs to have a Pageable parameter; Offending method: %s", method));
|
||||
}
|
||||
|
||||
if (isScrollQuery()) {
|
||||
|
||||
Assert.isTrue(this.parameters.hasScrollPositionParameter() || this.parameters.hasPageableParameter(),
|
||||
String.format("Scroll query needs to have a ScrollPosition parameter; Offending method: %s", method));
|
||||
}
|
||||
|
||||
this.domainClass = Lazy.of(() -> {
|
||||
|
||||
Class<?> repositoryDomainClass = metadata.getDomainType();
|
||||
@@ -127,6 +99,8 @@ public class QueryMethod {
|
||||
|
||||
this.resultProcessor = new ResultProcessor(this, factory);
|
||||
this.isCollectionQuery = Lazy.of(this::calculateIsCollectionQuery);
|
||||
|
||||
validate();
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -291,6 +265,41 @@ public class QueryMethod {
|
||||
return method.toString();
|
||||
}
|
||||
|
||||
public void validate() {
|
||||
|
||||
QueryMethodValidator.validate(method);
|
||||
|
||||
if (hasParameterOfType(method, Pageable.class)) {
|
||||
|
||||
if (!isStreamQuery()) {
|
||||
assertReturnTypeAssignable(method, QueryExecutionConverters.getAllowedPageableTypes());
|
||||
}
|
||||
|
||||
if (hasParameterOfType(method, Sort.class)) {
|
||||
throw new IllegalStateException(String.format("Method must not have Pageable *and* Sort parameters. "
|
||||
+ "Use sorting capabilities on Pageable instead; Offending method: %s", method));
|
||||
}
|
||||
}
|
||||
|
||||
if (hasParameterOfType(method, ScrollPosition.class)) {
|
||||
assertReturnTypeAssignable(method, Collections.singleton(Window.class));
|
||||
}
|
||||
|
||||
Assert.notNull(this.parameters,
|
||||
() -> String.format("Parameters extracted from method '%s' must not be null", method.getName()));
|
||||
|
||||
if (isPageQuery()) {
|
||||
Assert.isTrue(this.parameters.hasPageableParameter(),
|
||||
String.format("Paging query needs to have a Pageable parameter; Offending method: %s", method));
|
||||
}
|
||||
|
||||
if (isScrollQuery()) {
|
||||
|
||||
Assert.isTrue(this.parameters.hasScrollPositionParameter() || this.parameters.hasPageableParameter(),
|
||||
String.format("Scroll query needs to have a ScrollPosition parameter; Offending method: %s", method));
|
||||
}
|
||||
}
|
||||
|
||||
private boolean calculateIsCollectionQuery() {
|
||||
|
||||
if (isPageQuery() || isSliceQuery() || isScrollQuery()) {
|
||||
@@ -363,4 +372,30 @@ public class QueryMethod {
|
||||
|
||||
throw new IllegalStateException("Method has to have one of the following return types " + types);
|
||||
}
|
||||
|
||||
static class QueryMethodValidator {
|
||||
|
||||
static void validate(Method method) {
|
||||
|
||||
if (!pageableCannotHaveSortOrLimit.test(method)) {
|
||||
|
||||
throw new IllegalStateException(
|
||||
"Method method using Pageable parameter must not define Limit nor Sort. Offending method: %s"
|
||||
.formatted(method));
|
||||
}
|
||||
}
|
||||
|
||||
static Predicate<Method> pageableCannotHaveSortOrLimit = (method) -> {
|
||||
|
||||
if (!hasParameterAssignableToType(method, Pageable.class)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (hasParameterAssignableToType(method, Sort.class) || hasParameterAssignableToType(method, Limit.class)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
@@ -23,6 +23,7 @@ import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
import org.springframework.data.domain.Limit;
|
||||
import org.springframework.data.domain.Sort;
|
||||
import org.springframework.data.repository.query.parser.Part.Type;
|
||||
import org.springframework.data.repository.query.parser.PartTree.OrPart;
|
||||
@@ -169,6 +170,16 @@ public class PartTree implements Streamable<OrPart> {
|
||||
return subject.getMaxResults().orElse(null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the number of maximal results to return or {@link Limit#unlimited()} if not restricted.
|
||||
*
|
||||
* @return {@literal null} if not restricted.
|
||||
* @since 3.2
|
||||
*/
|
||||
public Limit getResultLimit() {
|
||||
return subject.getMaxResults().map(Limit::of).orElse(Limit.unlimited());
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an {@link Iterable} of all parts contained in the {@link PartTree}.
|
||||
*
|
||||
|
||||
@@ -19,6 +19,8 @@ import java.lang.reflect.InvocationTargetException;
|
||||
import java.lang.reflect.Method;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
import java.util.function.Consumer;
|
||||
|
||||
import org.springframework.data.repository.Repository;
|
||||
@@ -176,6 +178,17 @@ public abstract class ClassUtils {
|
||||
return Arrays.asList(method.getParameterTypes()).contains(type);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns whether the given {@link Method} has a parameter that is assignable to the given type.
|
||||
*
|
||||
* @param method
|
||||
* @param type
|
||||
* @return
|
||||
*/
|
||||
public static boolean hasParameterAssignableToType(Method method, Class<?> type) {
|
||||
return List.of(method.getParameterTypes()).stream().anyMatch(type::isAssignableFrom);
|
||||
}
|
||||
|
||||
/**
|
||||
* Helper method to extract the original exception that can possibly occur during a reflection call.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user