HTTP请求 header消息丢失、header参数值丢失、无法获取header带下划线请求参数

HTTP请求header参数默认是不会丢失

分析原因:header请求参数,默认是可以支持下划线参数的,但是如果你用了nginx做反向代理,那么要注意nginx默认是不支持header有下划线的参数,会被直接丢弃

解决办法:

        1.header参数,下划线参数都替换成不带下划线的参数

        2.nginx增加配置(underscores_in_headers),即可支持header带下划线参数的传递,如下图

http {
    include       mime.types;
    default_type  application/octet-stream;
    # 运行带下划线参数传递
    underscores_in_headers on;
    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;
    include conf.d/*.conf;
    server {
        listen       80;
        server_name  localhost;
        add_header 'Access-Control-Allow-Origin' '*';
        add_header 'Access-Control-Allow-Methods' 'PUT,POST,GET,DELETE,OPTIONS';
        add_header 'Access-Control-Allow-Headers' 'Content-Type,Content-Length, Authorization, Accept,X-Requested-With';

注:如果通过其他反向代理工具,也可能出现这个问题,都可以考虑是不是代理工具做了安全策略阻断

你可能感兴趣的:(nginx,java,java,网络协议,http,nginx)