赞
踩
springmvc核心流程及配置
springmvc处理模型数据
springmvc返回json
数据绑定
springmvc注解的使用
springmvc异常处理
springmvc拦截器
spring与springmvc整合
使用springSession完成分布式session
spring获取当前request
原文链接 https://zhhll.icu/2021/框架/springmvc/基础/9.spring获取当前request/
有时候需要在处理业务的时候用到request对象,可以使用该方法获取
HttpServletRequest request = ((ServletRequestAttributes) (RequestContextHolder.currentRequestAttributes())).getRequest();
使用RequestContextHolder.currentRequestAttributes()获取的RequestAttributes对象是线程局部变量(ThreadLocal),request对象也是线程局部变量
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。