Class RequestBodyArgumentResolver
java.lang.Object
org.springframework.web.service.invoker.RequestBodyArgumentResolver
- All Implemented Interfaces:
- HttpServiceArgumentResolver
HttpServiceArgumentResolver for @RequestBody
 annotated arguments.- Since:
- 6.0
- Author:
- Rossen Stoyanchev
- 
Constructor SummaryConstructorsConstructorDescriptionRequestBodyArgumentResolver(HttpExchangeAdapter exchangeAdapter) Constructor with aHttpExchangeAdapter, for access to config settings.
- 
Method SummaryModifier and TypeMethodDescriptionbooleanresolve(Object argument, MethodParameter parameter, HttpRequestValues.Builder requestValues) Resolve the argument value.
- 
Constructor Details- 
RequestBodyArgumentResolverConstructor with aHttpExchangeAdapter, for access to config settings.- Since:
- 6.1
 
 
- 
- 
Method Details- 
resolvepublic boolean resolve(@Nullable Object argument, MethodParameter parameter, HttpRequestValues.Builder requestValues) Description copied from interface:HttpServiceArgumentResolverResolve the argument value.- Specified by:
- resolvein interface- HttpServiceArgumentResolver
- Parameters:
- argument- the argument value
- parameter- the method parameter for the argument
- requestValues- builder to add HTTP request values to
- Returns:
- trueif the argument was resolved,- falseotherwise
 
 
-