fix(SecurityGlobalFilter.java): 生产环境放行POST请求

This commit is contained in:
有来技术 2021-08-30 08:16:15 +08:00
parent 712a170cc0
commit 6da89b0629

View File

@ -52,7 +52,7 @@ public class SecurityGlobalFilter implements GlobalFilter, Ordered {
if (env.equals("prod")
&& (HttpMethod.DELETE.toString().equals(request.getMethodValue()) // 删除方法
|| HttpMethod.PUT.toString().equals(request.getMethodValue())) // 修改方法
|| HttpMethod.POST.toString().equals(request.getMethodValue()) // 新增方法新增不存在的路由导致系统无法访问
// || HttpMethod.POST.toString().equals(request.getMethodValue()) // 新增方法新增不存在的路由导致系统无法访问
) {
return ResponseUtils.writeErrorInfo(response, ResultCode.FORBIDDEN_OPERATION);
}