Nginx 反向代理post请求参数为空Setting params NONE问题解决

一、问题描述

应用前端发送post请求,系统后台没有任何返回。(get请求可以)

框架为struts2+spring,请求方式ajax post。

日志提示:

[DEBUG][front][2019-01-24 16:46:00]Setting params NONE[com.opensymphony.xwork2.interceptor.ParametersInterceptor:76];

[DEBUG][front][2019-01-24 16:46:00]No result returned for action com.tienon.front.action.PersonalAction at action

二、解决方案

nginx增加配置参数

proxy_set_header X-Forwarded-For $remote_addr;

proxy_set_header Host $host;

Nginx 反向代理post请求参数为空Setting params NONE问题解决_第1张图片

 

你可能感兴趣的:(技术方案,nginx,java,post)