spring
ArthurKingYs
这个作者很懒,什么都没留下…
展开
-
spring boot过滤器中获取Url请求中的参数(打印接口参数日志)
最近有一个需要从接口请求参数后,打印日志,进行接口参数记录。这里记录一下处理过程中出现的问题。首先想到的就是request.getParameter(String )方法,但是这个方法只能在get请求中取到参数,post是不行的,后来想到了使用流的方式,调用request.getInputStream()获取流,然后从流中读取参数,如下代码所示:String body = "";...原创 2020-01-20 18:49:44 · 11436 阅读 · 0 评论 -
深入理解applicationContext.xml和dispatcherServlet-servlet.xml区别
the ContextLoaderListener looks for applicationContext.xml (or for the file specified by the context-param contextConfigLocation. Again the path is relative to the context-root. I usually place mine i...转载 2019-01-25 11:13:21 · 1024 阅读 · 0 评论