Class AbstractWebArgumentResolverAdapter
java.lang.Object
org.springframework.web.method.annotation.AbstractWebArgumentResolverAdapter
- All Implemented Interfaces:
- HandlerMethodArgumentResolver
- Direct Known Subclasses:
- ServletWebArgumentResolverAdapter
public abstract class AbstractWebArgumentResolverAdapter
extends Object
implements HandlerMethodArgumentResolver
An abstract base class adapting a 
WebArgumentResolver to the
 HandlerMethodArgumentResolver contract.
 Note: This class is provided for backwards compatibility.
 However it is recommended to re-write a WebArgumentResolver as
 HandlerMethodArgumentResolver. Since supportsParameter(org.springframework.core.MethodParameter)
 can only be implemented by actually resolving the value and then checking
 the result is not WebArgumentResolver#UNRESOLVED any exceptions
 raised must be absorbed and ignored since it's not clear whether the adapter
 doesn't support the parameter or whether it failed for an internal reason.
 The HandlerMethodArgumentResolver contract also provides access to
 model attributes and to WebDataBinderFactory (for type conversion).
- Since:
- 3.1
- Author:
- Arjen Poutsma, Rossen Stoyanchev
- 
Constructor SummaryConstructorsConstructorDescriptionCreate a new instance.
- 
Method SummaryModifier and TypeMethodDescriptionprotected abstract NativeWebRequestRequired for access to NativeWebRequest insupportsParameter(org.springframework.core.MethodParameter).resolveArgument(MethodParameter parameter, @Nullable ModelAndViewContainer mavContainer, NativeWebRequest webRequest, @Nullable WebDataBinderFactory binderFactory) Delegate to theWebArgumentResolverinstance.booleansupportsParameter(MethodParameter parameter) Actually resolve the value and check the resolved value is notWebArgumentResolver.UNRESOLVEDabsorbing _any_ exceptions.
- 
Constructor Details- 
AbstractWebArgumentResolverAdapterCreate a new instance.
 
- 
- 
Method Details- 
supportsParameterActually resolve the value and check the resolved value is notWebArgumentResolver.UNRESOLVEDabsorbing _any_ exceptions.- Specified by:
- supportsParameterin interface- HandlerMethodArgumentResolver
- Parameters:
- parameter- the method parameter to check
- Returns:
- trueif this resolver supports the supplied parameter;- falseotherwise
 
- 
resolveArgumentpublic @Nullable Object resolveArgument(MethodParameter parameter, @Nullable ModelAndViewContainer mavContainer, NativeWebRequest webRequest, @Nullable WebDataBinderFactory binderFactory) throws Exception Delegate to theWebArgumentResolverinstance.- Specified by:
- resolveArgumentin interface- HandlerMethodArgumentResolver
- Parameters:
- parameter- the method parameter to resolve. This parameter must have previously been passed to- HandlerMethodArgumentResolver.supportsParameter(org.springframework.core.MethodParameter)which must have returned- true.
- mavContainer- the ModelAndViewContainer for the current request
- webRequest- the current request
- binderFactory- a factory for creating- WebDataBinderinstances
- Returns:
- the resolved argument value, or nullif not resolvable
- Throws:
- IllegalStateException- if the resolved value is not assignable to the method parameter.
- Exception- in case of errors with the preparation of argument values
 
- 
getWebRequestRequired for access to NativeWebRequest insupportsParameter(org.springframework.core.MethodParameter).
 
-