我的resttemplate.exchange()在POST請求失敗,服務器返回500錯誤。RestTemplate日誌POST數據
我試圖將根日誌級別設置爲DEBUG,但在返回500錯誤之前沒有記錄任何內容。以確保我的日誌記錄配置是正確的,我添加了一行的resttemplate呼叫
HttpClient client = new DefaultHttpClient();
client.execute(new HttpGet("http://google.com"));
在這種情況下,之前確實有很多日誌消息的出現。
那麼我該如何讓RestTemplate導出調試數據呢?
感謝 楊
不知道這是否依賴於版本,但爲我org.apache.http.wire設置調試不適用於Spring RestTemplate。 – IcedDante
添加org.springframework.http = DEBUG適合我 –