doBefore(){ ServetRequestAttrbtes attributes = (ServetRequestAttrbtes)RequestContextHolder.getHttpattributes(); HttpServletRequest request = attributes.getRequest(); }
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在spring如何获取request 对象相关的知识,希望对你有一定的参考价值。
从容器RequestContextHolder中获取,spring中很多都是通过各种容器获取,如果用springsecurity的话,登录信息会放置到安全容器中 参考技术A 在xml中:doBefore(){ ServetRequestAttrbtes attributes = (ServetRequestAttrbtes)RequestContextHolder.getHttpattributes(); HttpServletRequest request = attributes.getRequest(); }
以上是关于在spring如何获取request 对象的主要内容,如果未能解决你的问题,请参考以下文章
Spring中获取request的几种方法,及其线程安全性分析