7

我的 resttemplate.exchange() 在 POST 请求上失败,服务器返回 500 错误。

我尝试将根日志记录级别设置为 DEBUG,但在返回 500 错误之前没有记录任何内容。为了确保我的日志记录配置正确,我在 resttemplate 调用之前添加了一行

HttpClient client = new DefaultHttpClient();
client.execute(new HttpGet("http://google.com"));

在这种情况下,确实出现了很多日志消息。

那么如何让 RestTemplate 导出调试数据呢?

谢谢杨

4

1 回答 1

11

从您的分析看来,您似乎希望 RestTemplate 使用 Apache HttpClient。

但是,默认情况下,Spring RestTemplate 不使用 Apache HttpClient,而是通过 SimpleClientHttpRequestFactory 使用 JDK 工具(java.net.URL#openConnection() 等)。

org.springframework.http.client.support.HttpAccessor声明:

private ClientHttpRequestFactory requestFactory = new
SimpleClientHttpRequestFactory();

据我所知,这个客户端不支持记录请求/响应。

要将 RestTemplate 更改为使用 HttpClient,请尝试以下操作:

new RestTemplate(new HttpComponentsClientHttpRequestFactory());

org.apache.http.wire日志记录配置应该在级别启用类别以debug记录完整的请求/响应。

于 2013-09-05T09:07:27.230 回答