springboot 获取请求 / 响应 接收和设置请求头 、请求码的方法


ResponseEntity处理响应信息

https://blog.csdn.net/neweastsun/article/details/81142870/

https://blog.csdn.net/kangweijian/article/details/110189922

 

方法一:

塞单个请求头

    @GetMapping("/bbb")
    public ResponseEntity<Map> delete_User2 (HttpServletRequest HttpServletRequest) {
        HttpHeaders headers = new HttpHeaders();
        headers.add("Custom-Header", "foo");
        Map m1 = new HashMap();
        m1.put("name", "张三");

        return ResponseEntity.status(302).header("location", "http://202.108.22.5/").body(m1);

    }

塞多个请求头 (这个最好)

    @GetMapping("/bbb")
    public ResponseEntity<Map> delete_User2 (HttpServletRequest HttpServletRequest) {
        HttpHeaders headers = new HttpHeaders();
        headers.add("Custom-Header", "foo");
        headers.add("Custom-Header222", "foo222");
        Map m1 = new HashMap();
        m1.put("name", "张三");
        System.out.print(m1);
        log.info(HttpServletRequest.getHeader("lucax"));
        return ResponseEntity.status(302).headers(headers).body(m1);
    }

  

方法二:

    @GetMapping("/bbb")
    public ResponseEntity<Map> delete_User2 (HttpServletRequest HttpServletRequest) {
        HttpHeaders headers = new HttpHeaders();
        headers.add("Custom-Header", "foo");
        headers.add("Custom-Header222", "foo222");
        log.info(HttpServletRequest.getHeader("lucax"));
        return new ResponseEntity("Custom header set", headers, HttpStatus.resolve(300));
    }

 

 

获取请求过来的请求头,见:

接收请求头信息和发送请求的去这里看看

https://www.cnblogs.com/kaibindirver/p/15398815.html

请求ip啥的 下面这篇文章有

https://blog.csdn.net/qq_41767337/article/details/89144733

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM