修复Log注解GET请求记录不到参数问题

This commit is contained in:
RuoYi
2022-12-03 13:20:48 +08:00
parent f646bfc0f5
commit a8be0ccb35
6 changed files with 44 additions and 16 deletions

View File

@@ -43,7 +43,8 @@ public class XssFilter implements GlobalFilter, Ordered
{
ServerHttpRequest request = exchange.getRequest();
// xss开关未开启 或 通过nacos关闭不过滤
if(!xss.getEnabled()){
if (!xss.getEnabled())
{
return chain.filter(exchange);
}
// GET DELETE 不过滤