Merge branch '5.2.x'
# Conflicts: # spring-webflux/src/main/java/org/springframework/web/reactive/result/method/InvocableHandlerMethod.java
This commit is contained in:
commit
e9cd37a4ee
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2018 the original author or authors.
|
* Copyright 2002-2020 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -38,7 +38,6 @@ public class HandlerMethodReturnValueHandlerComposite implements HandlerMethodRe
|
||||||
|
|
||||||
protected final Log logger = LogFactory.getLog(getClass());
|
protected final Log logger = LogFactory.getLog(getClass());
|
||||||
|
|
||||||
|
|
||||||
private final List<HandlerMethodReturnValueHandler> returnValueHandlers = new ArrayList<>();
|
private final List<HandlerMethodReturnValueHandler> returnValueHandlers = new ArrayList<>();
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2019 the original author or authors.
|
* Copyright 2002-2020 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -46,7 +46,7 @@ import org.springframework.util.Assert;
|
||||||
*/
|
*/
|
||||||
class InvocableHelper {
|
class InvocableHelper {
|
||||||
|
|
||||||
private static Log logger = LogFactory.getLog(InvocableHelper.class);
|
private static final Log logger = LogFactory.getLog(InvocableHelper.class);
|
||||||
|
|
||||||
|
|
||||||
private final HandlerMethodArgumentResolverComposite argumentResolvers =
|
private final HandlerMethodArgumentResolverComposite argumentResolvers =
|
||||||
|
|
|
@ -49,13 +49,13 @@ public class InvocableHandlerMethod extends HandlerMethod {
|
||||||
private static final Object[] EMPTY_ARGS = new Object[0];
|
private static final Object[] EMPTY_ARGS = new Object[0];
|
||||||
|
|
||||||
|
|
||||||
@Nullable
|
|
||||||
private WebDataBinderFactory dataBinderFactory;
|
|
||||||
|
|
||||||
private HandlerMethodArgumentResolverComposite resolvers = new HandlerMethodArgumentResolverComposite();
|
private HandlerMethodArgumentResolverComposite resolvers = new HandlerMethodArgumentResolverComposite();
|
||||||
|
|
||||||
private ParameterNameDiscoverer parameterNameDiscoverer = new DefaultParameterNameDiscoverer();
|
private ParameterNameDiscoverer parameterNameDiscoverer = new DefaultParameterNameDiscoverer();
|
||||||
|
|
||||||
|
@Nullable
|
||||||
|
private WebDataBinderFactory dataBinderFactory;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an instance from a {@code HandlerMethod}.
|
* Create an instance from a {@code HandlerMethod}.
|
||||||
|
@ -86,16 +86,8 @@ public class InvocableHandlerMethod extends HandlerMethod {
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the {@link WebDataBinderFactory} to be passed to argument resolvers allowing them to create
|
* Set {@link HandlerMethodArgumentResolver HandlerMethodArgumentResolvers}
|
||||||
* a {@link WebDataBinder} for data binding and type conversion purposes.
|
* to use for resolving method argument values.
|
||||||
* @param dataBinderFactory the data binder factory.
|
|
||||||
*/
|
|
||||||
public void setDataBinderFactory(WebDataBinderFactory dataBinderFactory) {
|
|
||||||
this.dataBinderFactory = dataBinderFactory;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set {@link HandlerMethodArgumentResolver HandlerMethodArgumentResolvers} to use to use for resolving method argument values.
|
|
||||||
*/
|
*/
|
||||||
public void setHandlerMethodArgumentResolvers(HandlerMethodArgumentResolverComposite argumentResolvers) {
|
public void setHandlerMethodArgumentResolvers(HandlerMethodArgumentResolverComposite argumentResolvers) {
|
||||||
this.resolvers = argumentResolvers;
|
this.resolvers = argumentResolvers;
|
||||||
|
@ -110,6 +102,14 @@ public class InvocableHandlerMethod extends HandlerMethod {
|
||||||
this.parameterNameDiscoverer = parameterNameDiscoverer;
|
this.parameterNameDiscoverer = parameterNameDiscoverer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set the {@link WebDataBinderFactory} to be passed to argument resolvers allowing them
|
||||||
|
* to create a {@link WebDataBinder} for data binding and type conversion purposes.
|
||||||
|
*/
|
||||||
|
public void setDataBinderFactory(WebDataBinderFactory dataBinderFactory) {
|
||||||
|
this.dataBinderFactory = dataBinderFactory;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Invoke the method after resolving its argument values in the context of the given request.
|
* Invoke the method after resolving its argument values in the context of the given request.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2018 the original author or authors.
|
* Copyright 2002-2020 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -16,9 +16,6 @@
|
||||||
|
|
||||||
package org.springframework.web.reactive.result.condition;
|
package org.springframework.web.reactive.result.condition;
|
||||||
|
|
||||||
import org.apache.commons.logging.Log;
|
|
||||||
import org.apache.commons.logging.LogFactory;
|
|
||||||
|
|
||||||
import org.springframework.http.MediaType;
|
import org.springframework.http.MediaType;
|
||||||
import org.springframework.lang.Nullable;
|
import org.springframework.lang.Nullable;
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
@ -35,8 +32,6 @@ import org.springframework.web.server.UnsupportedMediaTypeStatusException;
|
||||||
*/
|
*/
|
||||||
abstract class AbstractMediaTypeExpression implements Comparable<AbstractMediaTypeExpression>, MediaTypeExpression {
|
abstract class AbstractMediaTypeExpression implements Comparable<AbstractMediaTypeExpression>, MediaTypeExpression {
|
||||||
|
|
||||||
protected final Log logger = LogFactory.getLog(getClass());
|
|
||||||
|
|
||||||
private final MediaType mediaType;
|
private final MediaType mediaType;
|
||||||
|
|
||||||
private final boolean isNegated;
|
private final boolean isNegated;
|
||||||
|
|
|
@ -22,8 +22,6 @@ import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.concurrent.ConcurrentHashMap;
|
import java.util.concurrent.ConcurrentHashMap;
|
||||||
|
|
||||||
import org.apache.commons.logging.Log;
|
|
||||||
import org.apache.commons.logging.LogFactory;
|
|
||||||
import reactor.core.publisher.Mono;
|
import reactor.core.publisher.Mono;
|
||||||
|
|
||||||
import org.springframework.core.MethodParameter;
|
import org.springframework.core.MethodParameter;
|
||||||
|
@ -41,8 +39,6 @@ import org.springframework.web.server.ServerWebExchange;
|
||||||
*/
|
*/
|
||||||
class HandlerMethodArgumentResolverComposite implements HandlerMethodArgumentResolver {
|
class HandlerMethodArgumentResolverComposite implements HandlerMethodArgumentResolver {
|
||||||
|
|
||||||
protected final Log logger = LogFactory.getLog(getClass());
|
|
||||||
|
|
||||||
private final List<HandlerMethodArgumentResolver> argumentResolvers = new ArrayList<>();
|
private final List<HandlerMethodArgumentResolver> argumentResolvers = new ArrayList<>();
|
||||||
|
|
||||||
private final Map<MethodParameter, HandlerMethodArgumentResolver> argumentResolverCache =
|
private final Map<MethodParameter, HandlerMethodArgumentResolver> argumentResolverCache =
|
||||||
|
|
|
@ -60,7 +60,7 @@ public class InvocableHandlerMethod extends HandlerMethod {
|
||||||
private static final Object NO_ARG_VALUE = new Object();
|
private static final Object NO_ARG_VALUE = new Object();
|
||||||
|
|
||||||
|
|
||||||
private HandlerMethodArgumentResolverComposite resolvers = new HandlerMethodArgumentResolverComposite();
|
private final HandlerMethodArgumentResolverComposite resolvers = new HandlerMethodArgumentResolverComposite();
|
||||||
|
|
||||||
private ParameterNameDiscoverer parameterNameDiscoverer = new DefaultParameterNameDiscoverer();
|
private ParameterNameDiscoverer parameterNameDiscoverer = new DefaultParameterNameDiscoverer();
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2018 the original author or authors.
|
* Copyright 2002-2020 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -16,9 +16,6 @@
|
||||||
|
|
||||||
package org.springframework.web.servlet.mvc.condition;
|
package org.springframework.web.servlet.mvc.condition;
|
||||||
|
|
||||||
import org.apache.commons.logging.Log;
|
|
||||||
import org.apache.commons.logging.LogFactory;
|
|
||||||
|
|
||||||
import org.springframework.http.MediaType;
|
import org.springframework.http.MediaType;
|
||||||
import org.springframework.lang.Nullable;
|
import org.springframework.lang.Nullable;
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
@ -33,8 +30,6 @@ import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
*/
|
*/
|
||||||
abstract class AbstractMediaTypeExpression implements MediaTypeExpression, Comparable<AbstractMediaTypeExpression> {
|
abstract class AbstractMediaTypeExpression implements MediaTypeExpression, Comparable<AbstractMediaTypeExpression> {
|
||||||
|
|
||||||
protected final Log logger = LogFactory.getLog(getClass());
|
|
||||||
|
|
||||||
private final MediaType mediaType;
|
private final MediaType mediaType;
|
||||||
|
|
||||||
private final boolean isNegated;
|
private final boolean isNegated;
|
||||||
|
|
Loading…
Reference in New Issue