Nginx Reverse proxy +tomcat+springmvc get user access IP

Source: Internet
Author: User
Tags nginx reverse proxy

NGINX+TOMCAT+SPRINGMVC Get user Access IP

1.Nginx Reverse Proxy
modifying Nginx configuration Files

Location/ {        *********** before code *******;        Proxy_set_header host                $host;        Proxy_set_header X-forwarded- for $proxy _add_x_forwarded_for; // set the proxy IP header, the parameters        when the code gets Proxy_set_header x-real-ip  // allow the request header sent to the proxy server to be redefined or add some fields to show the real client's IP}

Adding methods in 2.SPRINGMVC code

            //add httpservletrequest request parameter to the Springmvc methodString IP = request.getheader ("X-forwarded-for"); if(IP = =NULL|| Ip.length () = = 0 | | "Unknown". Equalsignorecase (IP)) {IP= Request.getheader ("Proxy-client-ip"); }            if(IP = =NULL|| Ip.length () = = 0 | | "Unknown". Equalsignorecase (IP)) {IP= Request.getheader ("Wl-proxy-client-ip"); }            if(IP = =NULL|| Ip.length () = = 0 | | "Unknown". Equalsignorecase (IP)) {IP=request.getremoteaddr (); } Utils.log.info ("IP:" + IP + "" ");//log printing in your own code

Nginx Reverse proxy +tomcat+springmvc get user access IP

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.