Spring RestTemplate重定向302

时间:2015-09-04 07:38:32

标签: spring rest redirect response http-status-code-302

我尝试使用Spring rest模板来发布登录请求。

RestTemplate restTemplate = new RestTemplate();

HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_FORM_URLENCODED);

LinkedMultiValueMap<String, Object> mvm = new LinkedMultiValueMap<String, Object>();
mvm.add("LoginForm_Login", "login");
mvm.add("LoginForm_Password", "password");

ResponseEntity<String> result = restTemplate.exchange(uriDWLogin, HttpMethod.POST, requestEntity, String.class);

我的ResponseEntity状态为302,我想按照此请求获取正文回复,因为我没有得到此请求的正文。

18:59:59.170 MAIN [http-nio-8080-exec-83] DEBUG c.d.s.c.DemandwareCtlr - loginToSandbox - StatusResponse - 302
18:59:59.170 MAIN [http-nio-8080-exec-83] DEBUG c.d.s.c.DemandwareCtlr - loginToSandbox - BodyResponse - 

我该怎么做才能解决这个问题?!

1 个答案:

答案 0 :(得分:18)

如果请求是GET请求,则会自动执行重定向(请参阅this answer)。要在POST请求中实现,一个选项可能是使用不同的请求工厂,例如HttpComponentsClientHttpRequestFactory,并将其设置为使用具有所需设置的HttpClient来跟踪重定向(请参阅{{3 }}):

final RestTemplate restTemplate = new RestTemplate();
final HttpComponentsClientHttpRequestFactory factory = new HttpComponentsClientHttpRequestFactory();
final HttpClient httpClient = HttpClientBuilder.create()
                                               .setRedirectStrategy(new LaxRedirectStrategy())
                                               .build();
factory.setHttpClient(httpClient);
restTemplate.setRequestFactory(factory);

我没有测试过,但这应该可行。