如何在 Spring MVC 中记录 Http 请求正文?
只是认为这对于开发阶段来说是一个有用的功能。我可以配置它还是需要一些编码?谢谢各位堆垛机!
Just think it will be a useful feature for dev stage. Is it something I can configure or requires a bit coding? Thank you stackers!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用: spring-mvc-logger
添加到 pom.xml:
添加到 web.xml:
添加到log4j.xml:
Use: spring-mvc-logger
Add to pom.xml:
Add to web.xml:
Add to log4j.xml:
看一下
AbstractRequestLoggingFilter
系列过滤器。此外,使用客户端工具进行调试可能会很方便,例如 Firebug 或 Fiddler。
Take a look at the
AbstractRequestLoggingFilter
family of filters.Aslo it may be convenient to use client-side tools for debugging, such as Firebug or Fiddler.