@RequestMapping(value = "/details", method = RequestMethod.POST)
public ResponseEntity getDetails(HttpServletRequest request) {
String token = request.getHeader("my_request_token");
...
}
当我使用邮递员发送带有标题中的my_request_token的发帖请求时,可以在我的开发环境(本地主机)中获取令牌。但是,在负载均衡器后面(并使用SSL)部署在AWS EC2上的相同代码始终在令牌中获得空值。
我正在使用java,springboot。