Class AbstractNamedValueMethodArgumentResolver
- java.lang.Object
- org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver
- All Implemented Interfaces:
HandlerMethodArgumentResolver
- Direct Known Subclasses:
AbstractCookieValueMethodArgumentResolver,ExpressionValueMethodArgumentResolver,MatrixVariableMethodArgumentResolver,PathVariableMethodArgumentResolver,RequestAttributeMethodArgumentResolver,RequestHeaderMethodArgumentResolver,RequestParamMethodArgumentResolver,SessionAttributeMethodArgumentResolver
public abstract class AbstractNamedValueMethodArgumentResolver extends Object implements HandlerMethodArgumentResolver
Abstract base class for resolving method arguments from a named value. Request parameters, request headers, and path variables are examples of named values. Each may have a name, a required flag, and a default value.Subclasses define how to do the following:
- Obtain named value information for a method parameter
- Resolve names into argument values
- Handle missing argument values when argument values are required
- Optionally handle a resolved value
A default value string can contain ${...} placeholders and Spring Expression Language #{...} expressions. For this to work a
ConfigurableBeanFactorymust be supplied to the class constructor.A
WebDataBinderis created to apply type conversion to the resolved argument value if it doesn't match the method parameter type.- Since:
- 3.1
- Author:
- Arjen Poutsma, Rossen Stoyanchev, Juergen Hoeller
Nested Class Summary
Nested Classes Modifier and Type Class Description protected static classAbstractNamedValueMethodArgumentResolver.NamedValueInfoRepresents the information about a named value, including name, whether it's required and a default value.
Constructor Summary
Constructors Constructor Description AbstractNamedValueMethodArgumentResolver()AbstractNamedValueMethodArgumentResolver(ConfigurableBeanFactory beanFactory)Create a newAbstractNamedValueMethodArgumentResolverinstance.
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract AbstractNamedValueMethodArgumentResolver.NamedValueInfocreateNamedValueInfo(MethodParameter parameter)Create theAbstractNamedValueMethodArgumentResolver.NamedValueInfoobject for the given method parameter.protected voidhandleMissingValue(String name, MethodParameter parameter)Invoked when a named value is required, butresolveName(String, MethodParameter, NativeWebRequest)returnednulland there is no default value.protected voidhandleMissingValue(String name, MethodParameter parameter, NativeWebRequest request)Invoked when a named value is required, butresolveName(String, MethodParameter, NativeWebRequest)returnednulland there is no default value.protected voidhandleResolvedValue(Object arg, String name, MethodParameter parameter, ModelAndViewContainer mavContainer, NativeWebRequest webRequest)Invoked after a value is resolved.ObjectresolveArgument(MethodParameter parameter, ModelAndViewContainer mavContainer, NativeWebRequest webRequest, WebDataBinderFactory binderFactory)Resolves a method parameter into an argument value from a given request.protected abstract ObjectresolveName(String name, MethodParameter parameter, NativeWebRequest request)Resolve the given parameter type and value name into an argument value.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.springframework.web.method.support.HandlerMethodArgumentResolver
supportsParameter
Constructor Detail
AbstractNamedValueMethodArgumentResolver
public AbstractNamedValueMethodArgumentResolver()
AbstractNamedValueMethodArgumentResolver
public AbstractNamedValueMethodArgumentResolver(@Nullable ConfigurableBeanFactory beanFactory)
Create a newAbstractNamedValueMethodArgumentResolverinstance.- Parameters:
beanFactory- a bean factory to use for resolving ${...} placeholder and #{...} SpEL expressions in default values, ornullif default values are not expected to contain expressions
Method Detail
resolveArgument
@Nullable public final Object resolveArgument(MethodParameter parameter, @Nullable ModelAndViewContainer mavContainer, NativeWebRequest webRequest, @Nullable WebDataBinderFactory binderFactory) throws Exception
Description copied from interface:HandlerMethodArgumentResolverResolves a method parameter into an argument value from a given request. AModelAndViewContainerprovides access to the model for the request. AWebDataBinderFactoryprovides a way to create aWebDataBinderinstance when needed for data binding and type conversion purposes.- Specified by:
resolveArgumentin interfaceHandlerMethodArgumentResolver- Parameters:
parameter- the method parameter to resolve. This parameter must have previously been passed toHandlerMethodArgumentResolver.supportsParameter(org.springframework.core.MethodParameter)which must have returnedtrue.mavContainer- the ModelAndViewContainer for the current requestwebRequest- the current requestbinderFactory- a factory for creatingWebDataBinderinstances- Returns:
- the resolved argument value, or
nullif not resolvable - Throws:
Exception- in case of errors with the preparation of argument values
createNamedValueInfo
protected abstract AbstractNamedValueMethodArgumentResolver.NamedValueInfo createNamedValueInfo(MethodParameter parameter)
Create theAbstractNamedValueMethodArgumentResolver.NamedValueInfoobject for the given method parameter. Implementations typically retrieve the method annotation by means ofMethodParameter.getParameterAnnotation(Class).- Parameters:
parameter- the method parameter- Returns:
- the named value information
resolveName
@Nullable protected abstract Object resolveName(String name, MethodParameter parameter, NativeWebRequest request) throws Exception
Resolve the given parameter type and value name into an argument value.
handleMissingValue
protected void handleMissingValue(String name, MethodParameter parameter, NativeWebRequest request) throws Exception
Invoked when a named value is required, butresolveName(String, MethodParameter, NativeWebRequest)returnednulland there is no default value. Subclasses typically throw an exception in this case.- Parameters:
name- the name for the valueparameter- the method parameterrequest- the current request- Throws:
Exception- Since:
- 4.3
handleMissingValue
protected void handleMissingValue(String name, MethodParameter parameter) throws ServletException
Invoked when a named value is required, butresolveName(String, MethodParameter, NativeWebRequest)returnednulland there is no default value. Subclasses typically throw an exception in this case.- Parameters:
name- the name for the valueparameter- the method parameter- Throws:
ServletException
handleResolvedValue
protected void handleResolvedValue(@Nullable Object arg, String name, MethodParameter parameter, @Nullable ModelAndViewContainer mavContainer, NativeWebRequest webRequest)
Invoked after a value is resolved.- Parameters:
arg- the resolved argument valuename- the argument nameparameter- the argument parameter typemavContainer- theModelAndViewContainer(may benull)webRequest- the current request