the DefaultOutboundRequestMapper uses POST as the default http-method now... any changes in the adapter (via setter) will propagate

This commit is contained in:
Mark Fisher
2010-06-25 14:11:28 +00:00
parent 98909a6dc5
commit 54e7e2de4c

View File

@@ -38,7 +38,7 @@ import org.springframework.util.Assert;
*/
public class DefaultOutboundRequestMapper implements OutboundRequestMapper {
private volatile HttpMethod httpMethod;
private volatile HttpMethod httpMethod = HttpMethod.POST;
private volatile boolean extractPayload = true;