Add HTTP method to RequestDataValueProcessor method

Issue: SPR-10041, SPR-10652
This commit is contained in:
Rossen Stoyanchev
2013-06-20 20:34:20 -04:00
parent 26fb880622
commit 4b22558a06
4 changed files with 13 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2012 the original author or authors.
* Copyright 2002-2013 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -20,8 +20,6 @@ import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import org.springframework.web.servlet.support.RequestDataValueProcessor;
public class RequestDataValueProcessorWrapper implements RequestDataValueProcessor {
private RequestDataValueProcessor processor;
@@ -41,8 +39,8 @@ public class RequestDataValueProcessorWrapper implements RequestDataValueProcess
}
@Override
public String processAction(HttpServletRequest request, String action) {
return (this.processor != null) ? this.processor.processAction(request, action) : action;
public String processAction(HttpServletRequest request, String action, String httpMethod) {
return (this.processor != null) ? this.processor.processAction(request, action, httpMethod) : action;
}
@Override

View File

@@ -326,7 +326,7 @@ public class FormTagTests extends AbstractHtmlElementTagTests {
public void testRequestDataValueProcessorHooks() throws Exception {
String action = "/my/form?foo=bar";
RequestDataValueProcessor processor = getMockRequestDataValueProcessor();
given(processor.processAction(this.request, action)).willReturn(action);
given(processor.processAction(this.request, action, "post")).willReturn(action);
given(processor.getExtraHiddenFields(this.request)).willReturn(Collections.singletonMap("key", "value"));
this.tag.doStartTag();