深入理解org.springframework.web.context.request.RequestContextHolder

简介: `RequestContextHolder`是Spring提供的一个便捷工具类,用于在非Controller层访问请求上下文信息。通过理解其工作原理和应用场景,可以更好地在Spring应用中管理和使用请求信息,提升代码的可维护性和扩展性。

深入理解 org.springframework.web.context.request.RequestContextHolder

在Spring Web应用中,RequestContextHolder是一个非常有用的工具类,用于在任何地方访问当前请求的上下文信息。它解决了非Controller层或非过滤器层需要访问请求上下文的问题,如在Service层或DAO层。以下是对 RequestContextHolder的详细解析。

1. RequestContextHolder简介

RequestContextHolder是Spring提供的一个持有器(holder)类,用于存储和获取当前线程的请求相关信息。它通过ThreadLocal机制,将当前请求的上下文信息与线程绑定,从而使得在应用的任何地方都能访问到这些信息。

2. RequestContextHolder的主要方法

2.1 getRequestAttributes

public static RequestAttributes getRequestAttributes() {
    return requestAttributesHolder.get();
}
​

返回当前线程绑定的 RequestAttributes,如果没有绑定则返回 null

2.2 setRequestAttributes

public static void setRequestAttributes(@Nullable RequestAttributes attributes) {
    requestAttributesHolder.set(attributes);
}
​

RequestAttributes绑定到当前线程。

2.3 resetRequestAttributes

public static void resetRequestAttributes() {
    requestAttributesHolder.remove();
}
​

解除当前线程的 RequestAttributes绑定。

2.4 currentRequestAttributes

public static RequestAttributes currentRequestAttributes() throws IllegalStateException {
    RequestAttributes attributes = getRequestAttributes();
    if (attributes == null) {
        throw new IllegalStateException("No thread-bound request found: " +
            "Are you referring to request attributes outside of an actual web request, " +
            "or processing a request outside of the originally receiving thread? " +
            "If you are actually operating within a web request and still receive this message, " +
            "your code is probably running outside of DispatcherServlet: " +
            "In this case, use RequestContextListener or RequestContextFilter to expose the current request.");
    }
    return attributes;
}
​

获取当前线程的 RequestAttributes,如果没有绑定则抛出 IllegalStateException

3. RequestContextHolder的应用场景

3.1 在Service层访问请求信息

在Service层或其他非Controller的地方,需要访问当前请求的信息,可以使用 RequestContextHolder

import org.springframework.web.context.request.RequestContextHolder;
import org.springframework.web.context.request.ServletRequestAttributes;

import javax.servlet.http.HttpServletRequest;

public class MyService {

    public void logRequestDetails() {
        ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
        if (attributes != null) {
            HttpServletRequest request = attributes.getRequest();
            String sessionId = request.getSession().getId();
            System.out.println("Current Session ID: " + sessionId);
        }
    }
}
​

3.2 在自定义拦截器中使用

自定义拦截器中可以通过 RequestContextHolder获取请求信息来做日志记录或其他处理。

import org.springframework.web.context.request.RequestContextHolder;
import org.springframework.web.context.request.ServletRequestAttributes;
import org.springframework.web.servlet.HandlerInterceptor;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class MyInterceptor implements HandlerInterceptor {

    @Override
    public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
        ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
        if (attributes != null) {
            HttpServletRequest currentRequest = attributes.getRequest();
            String requestURI = currentRequest.getRequestURI();
            System.out.println("Incoming request: " + requestURI);
        }
        return true;
    }
}
​

4. 注意事项

  1. ThreadLocal的使用RequestContextHolder使用 ThreadLocal存储请求上下文,因此在并发环境下,每个线程都有独立的请求上下文。
  2. 请求生命周期:确保在请求生命周期内使用 RequestContextHolder,否则可能会抛出 IllegalStateException
  3. 集成RequestContextListener或RequestContextFilter:在非Spring管理的线程中,需要使用 RequestContextListenerRequestContextFilter来确保请求上下文的可用性。

分析说明表

方法 说明 示例代码
getRequestAttributes 获取当前线程绑定的 RequestAttributes RequestAttributes attributes = RequestContextHolder.getRequestAttributes();
setRequestAttributes 绑定 RequestAttributes到当前线程 RequestContextHolder.setRequestAttributes(attributes);
resetRequestAttributes 解除当前线程的 RequestAttributes绑定 RequestContextHolder.resetRequestAttributes();
currentRequestAttributes 获取当前线程的 RequestAttributes,无则抛异常 RequestAttributes attributes = RequestContextHolder.currentRequestAttributes();

结论

RequestContextHolder是Spring提供的一个便捷工具类,用于在非Controller层访问请求上下文信息。通过理解其工作原理和应用场景,可以更好地在Spring应用中管理和使用请求信息,提升代码的可维护性和扩展性。

目录
相关文章
|
4天前
|
弹性计算 双11 开发者
阿里云ECS“99套餐”再升级!双11一站式满足全年算力需求
11月1日,阿里云弹性计算ECS双11活动全面开启,在延续火爆的云服务器“99套餐”外,CPU、GPU及容器等算力产品均迎来了全年最低价。同时,阿里云全新推出简捷版控制台ECS Lite及专属宝塔面板,大幅降低企业和开发者使用ECS云服务器门槛。
|
21天前
|
存储 弹性计算 人工智能
阿里云弹性计算_通用计算专场精华概览 | 2024云栖大会回顾
阿里云弹性计算产品线、存储产品线产品负责人Alex Chen(陈起鲲)及团队内多位专家,和中国电子技术标准化研究院云计算标准负责人陈行、北京望石智慧科技有限公司首席架构师王晓满两位嘉宾,一同带来了题为《通用计算新品发布与行业实践》的专场Session。本次专场内容包括阿里云弹性计算全新发布的产品家族、阿里云第 9 代 ECS 企业级实例、CIPU 2.0技术解读、E-HPC+超算融合、倚天云原生算力解析等内容,并发布了国内首个云超算国家标准。
阿里云弹性计算_通用计算专场精华概览 | 2024云栖大会回顾
|
3天前
|
人工智能 弹性计算 文字识别
基于阿里云文档智能和RAG快速构建企业"第二大脑"
在数字化转型的背景下,企业面临海量文档管理的挑战。传统的文档管理方式效率低下,难以满足业务需求。阿里云推出的文档智能(Document Mind)与检索增强生成(RAG)技术,通过自动化解析和智能检索,极大地提升了文档管理的效率和信息利用的价值。本文介绍了如何利用阿里云的解决方案,快速构建企业专属的“第二大脑”,助力企业在竞争中占据优势。
|
1天前
|
人工智能 自然语言处理 安全
创新不设限,灵码赋新能:通义灵码新功能深度评测
自从2023年通义灵码发布以来,这款基于阿里云通义大模型的AI编码助手迅速成为开发者心中的“明星产品”。它不仅为个人开发者提供强大支持,还帮助企业团队提升研发效率,推动软件开发行业的创新发展。本文将深入探讨通义灵码最新版本的三大新功能:@workspace、@terminal 和 #team docs,分享这些功能如何在实际工作中提高效率的具体案例。
|
8天前
|
负载均衡 算法 网络安全
阿里云WoSign SSL证书申请指南_沃通SSL技术文档
阿里云平台WoSign品牌SSL证书是由阿里云合作伙伴沃通CA提供,上线阿里云平台以来,成为阿里云平台热销的国产品牌证书产品,用户在阿里云平台https://www.aliyun.com/product/cas 可直接下单购买WoSign SSL证书,快捷部署到阿里云产品中。
1851 6
阿里云WoSign SSL证书申请指南_沃通SSL技术文档
|
11天前
|
Web App开发 算法 安全
什么是阿里云WoSign SSL证书?_沃通SSL技术文档
WoSign品牌SSL证书由阿里云平台SSL证书合作伙伴沃通CA提供,上线阿里云平台以来,成为阿里云平台热销的国产品牌证书产品。
1791 2
|
19天前
|
编解码 Java 程序员
写代码还有专业的编程显示器?
写代码已经十个年头了, 一直都是习惯直接用一台Mac电脑写代码 偶尔接一个显示器, 但是可能因为公司配的显示器不怎么样, 还要接转接头 搞得桌面杂乱无章,分辨率也低,感觉屏幕还是Mac自带的看着舒服
|
26天前
|
存储 人工智能 缓存
AI助理直击要害,从繁复中提炼精华——使用CDN加速访问OSS存储的图片
本案例介绍如何利用AI助理快速实现OSS存储的图片接入CDN,以加速图片访问。通过AI助理提炼关键操作步骤,避免在复杂文档中寻找解决方案。主要步骤包括开通CDN、添加加速域名、配置CNAME等。实测显示,接入CDN后图片加载时间显著缩短,验证了加速效果。此方法大幅提高了操作效率,降低了学习成本。
5390 15
|
14天前
|
人工智能 关系型数据库 Serverless
1024,致开发者们——希望和你一起用技术人独有的方式,庆祝你的主场
阿里云开发者社区推出“1024·云上见”程序员节专题活动,包括云上实操、开发者测评和征文三个分会场,提供14个实操活动、3个解决方案、3 个产品方案的测评及征文比赛,旨在帮助开发者提升技能、分享经验,共筑技术梦想。
1150 152
|
21天前
|
存储 缓存 关系型数据库
MySQL事务日志-Redo Log工作原理分析
事务的隔离性和原子性分别通过锁和事务日志实现,而持久性则依赖于事务日志中的`Redo Log`。在MySQL中,`Redo Log`确保已提交事务的数据能持久保存,即使系统崩溃也能通过重做日志恢复数据。其工作原理是记录数据在内存中的更改,待事务提交时写入磁盘。此外,`Redo Log`采用简单的物理日志格式和高效的顺序IO,确保快速提交。通过不同的落盘策略,可在性能和安全性之间做出权衡。
1585 14