1、修改nginx配置文件在location模块下添加如下配置获取代理前的用户IPproxy_set_headerX-real-ip$remote_addr;修改后配置参考如下:location/{try_files$uri$uri//index.html;proxy_set_headerX-real-ip$remote_addr;}2、java端获取用户IPpublicstaticStringgetIpAddress(){HttpServletRequestrequest=getRequest();Stringip...