-
Notifications
You must be signed in to change notification settings - Fork 38.6k
Closed
Labels
in: webIssues in web modules (web, webmvc, webflux, websocket)Issues in web modules (web, webmvc, webflux, websocket)type: enhancementA general enhancementA general enhancement
Milestone
Description
Lines 237 to 249 in 26d413c
public interface Processor { | |
/** | |
* Invoked after argument resolvers have been called, and before the | |
* {@link HttpRequestValues} is built. | |
* @param method the {@code @HttpExchange} method | |
* @param arguments the raw argument values to the method | |
* @param builder the builder to add request values too; the builder | |
* also exposes method {@link Metadata} from the {@code HttpExchange} method. | |
*/ | |
void process(Method method, @Nullable Object[] arguments, Builder builder); | |
} |
We should also pass the MethodParameter[] parameters
to avoid parsing again
Metadata
Metadata
Assignees
Labels
in: webIssues in web modules (web, webmvc, webflux, websocket)Issues in web modules (web, webmvc, webflux, websocket)type: enhancementA general enhancementA general enhancement