我正在使用spring和jaxb。我正在使用交換方法發佈請求。我想記錄請求。我該怎麼做?如何在resttemplate中記錄請求xmls
0
A
回答
-1
org.springframework.web.servlet.HandlerInterceptor
「preHandle」 方法需要
IOUtils.toString(request.getInputStream())
+0
請您詳細說明這個答案。 – Vikram
+0
我的英文不太好,對不起... – user3114924
相關問題
- 1. 如何在Spring RestTemplate中記錄響應?
- 2. RestTemplate PATCH請求
- 3. 如何在ColdFusion中記錄SOAP請求?
- 4. 如何記錄Node.js請求
- 5. 如何記錄AFHTTPRequestOperationManager請求?
- 6. Spring RestTemplate:請求/響應json沒有被記錄
- 7. 如何製作Spring RestTemplate PATCH請求
- 8. 帶請求參數的RestTemplate GET請求
- 9. RestTemplate Bad請求多個請求
- 10. RestTemplate POST請求RequestParams和RequestBody
- 11. Puma請求記錄
- 12. 請求在捲曲而不是在RestTemplate
- 13. Jmeter:如何記錄https請求
- 14. 如何使用xcode記錄HTTP請求
- 15. 如何記錄resteasy客戶端請求
- 16. 如何記錄所有的硒請求?
- 17. 通過JSON中RestTemplate的POST請求
- 18. 在http請求中記錄xml內容
- 19. 在nginx中記錄請求protcol?
- 20. 在BotBuilder中記錄傳入的請求
- 21. 避免在Rails中記錄Memcached請求
- 22. 在mongodb中記錄所有請求
- 23. 在IIS中記錄完整請求URL
- 24. 在Django中記錄Web服務請求
- 25. RestTemplate在獲取請求時給出400錯誤請求錯誤
- 26. 如何在駱駝中記錄對log4j記錄器的請求/響應?
- 27. 如何通過請求正文中的RestTemplate POST xml數據?
- 28. 如何在Spring RestTemplate請求上設置「Accept:」標題?
- 29. 如何在Google Analytics中記錄ajax請求?
- 30. 如何在Jetty 8中添加請求記錄過濾器?
更多細節!! – iNan
restTemplateObj.exchange(updateUrl,HttpMethod.POST,requestEntity,String.class,profileParam); 我想記錄發佈到網址的確切請求xml – Vikram