当前位置:  开发笔记 > 程序员 > 正文

是否有一种静态方法来获取当前请求的HttpServletRequest

如何解决《是否有一种静态方法来获取当前请求的HttpServletRequest》经验,为你挑选了1个好方法。

我正在使用Spring注释,我可以HttpRequestContext从Controller传递给服务.

我正在寻找一种静态的方式或任何更好的解决方案而不是RequestContext四处传播.



1> Abbadon..:

如果您使用的是弹簧,则可以执行以下操作:

public static HttpServletRequest getCurrentHttpRequest(){
    RequestAttributes requestAttributes = RequestContextHolder.getRequestAttributes();
    if (requestAttributes instanceof ServletRequestAttributes) {
        HttpServletRequest request = ((ServletRequestAttributes)requestAttributes).getRequest();
        return request;
    }
    logger.debug("Not called in the context of an HTTP request");
    return null;
}

推荐阅读
帆侮听我悄悄说星星
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有