类 DestinationVariableMethodArgumentResolver
- java.lang.Object
- org.springframework.messaging.handler.annotation.support.AbstractNamedValueMethodArgumentResolver
- org.springframework.messaging.handler.annotation.support.DestinationVariableMethodArgumentResolver
- 所有已实现的接口:
HandlerMethodArgumentResolver
public class DestinationVariableMethodArgumentResolver extends AbstractNamedValueMethodArgumentResolver
Resolve for@DestinationVariablemethod parameters.- 从以下版本开始:
- 4.0
- 作者:
- Brian Clozel
嵌套类概要
从类继承的嵌套类/接口 org.springframework.messaging.handler.annotation.support.AbstractNamedValueMethodArgumentResolver
AbstractNamedValueMethodArgumentResolver.NamedValueInfo
字段概要
字段 修饰符和类型 字段 说明 static StringDESTINATION_TEMPLATE_VARIABLES_HEADERThe name of the header used to for template variables.
构造器概要
构造器 构造器 说明 DestinationVariableMethodArgumentResolver(ConversionService conversionService)
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 protected AbstractNamedValueMethodArgumentResolver.NamedValueInfocreateNamedValueInfo(MethodParameter parameter)Create theAbstractNamedValueMethodArgumentResolver.NamedValueInfoobject for the given method parameter.protected voidhandleMissingValue(String name, MethodParameter parameter, Message<?> message)Invoked when a value is required, butAbstractNamedValueMethodArgumentResolver.resolveArgumentInternal(org.springframework.core.MethodParameter, org.springframework.messaging.Message<?>, java.lang.String)returnednulland there is no default value.protected ObjectresolveArgumentInternal(MethodParameter parameter, Message<?> message, String name)Resolves the given parameter type and value name into an argument value.booleansupportsParameter(MethodParameter parameter)Whether the given method parameter is supported by this resolver.从类继承的方法 org.springframework.messaging.handler.annotation.support.AbstractNamedValueMethodArgumentResolver
handleResolvedValue, resolveArgument
字段详细资料
DESTINATION_TEMPLATE_VARIABLES_HEADER
public static final String DESTINATION_TEMPLATE_VARIABLES_HEADER
The name of the header used to for template variables.
构造器详细资料
DestinationVariableMethodArgumentResolver
public DestinationVariableMethodArgumentResolver(ConversionService conversionService)
方法详细资料
supportsParameter
public boolean supportsParameter(MethodParameter parameter)
从接口复制的说明:HandlerMethodArgumentResolverWhether the given method parameter is supported by this resolver.- 参数:
parameter- the method parameter to check- 返回:
trueif this resolver supports the supplied parameter;falseotherwise
createNamedValueInfo
protected AbstractNamedValueMethodArgumentResolver.NamedValueInfo createNamedValueInfo(MethodParameter parameter)
Create theAbstractNamedValueMethodArgumentResolver.NamedValueInfoobject for the given method parameter. Implementations typically retrieve the method annotation by means ofMethodParameter.getParameterAnnotation(Class).- 指定者:
createNamedValueInfo在类中AbstractNamedValueMethodArgumentResolver- 参数:
parameter- the method parameter- 返回:
- the named value information
resolveArgumentInternal
@Nullable protected Object resolveArgumentInternal(MethodParameter parameter, Message<?> message, String name)
Resolves the given parameter type and value name into an argument value.- 指定者:
resolveArgumentInternal在类中AbstractNamedValueMethodArgumentResolver- 参数:
parameter- the method parameter to resolve to an argument valuemessage- the current requestname- the name of the value being resolved- 返回:
- the resolved argument. May be
null
handleMissingValue
protected void handleMissingValue(String name, MethodParameter parameter, Message<?> message)
Invoked when a value is required, butAbstractNamedValueMethodArgumentResolver.resolveArgumentInternal(org.springframework.core.MethodParameter, org.springframework.messaging.Message<?>, java.lang.String)returnednulland there is no default value. Sub-classes can throw an appropriate exception for this case.- 指定者:
handleMissingValue在类中AbstractNamedValueMethodArgumentResolver- 参数:
name- the name for the valueparameter- the target method parametermessage- the message being processed