SpringBoot提示如下错误信息:org.springframework.security.web.firewall.RequestRejectedException
造成原因:由于URL 地址不规范引起 的错误
解决步骤:
1、检查后端请求URL路径地址修改不符合规范的URL路径,让其符合规范。
2、如果是使用nginx 转发,同时检查 nginx 配置
3、添加SpringSecurity 配置,允许不规范 URL 访问
@Bean
public HttpFirewall httpFirewall() {
return new DefaultHttpFirewall();
}