支持配置XSS跨站脚本过滤

pull/91/MERGE
RuoYi 3 years ago
parent 04edd66199
commit 00fa1c3158

@ -2,6 +2,7 @@ package com.ruoyi.gateway.filter;
import java.nio.charset.StandardCharsets; import java.nio.charset.StandardCharsets;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.cloud.gateway.filter.GatewayFilterChain; import org.springframework.cloud.gateway.filter.GatewayFilterChain;
import org.springframework.cloud.gateway.filter.GlobalFilter; import org.springframework.cloud.gateway.filter.GlobalFilter;
import org.springframework.core.Ordered; import org.springframework.core.Ordered;
@ -27,6 +28,7 @@ import reactor.core.publisher.Mono;
* @author ruoyi * @author ruoyi
*/ */
@Component @Component
@ConditionalOnProperty(value = "security.xss.enabled", havingValue = "true")
public class XssFilter implements GlobalFilter, Ordered public class XssFilter implements GlobalFilter, Ordered
{ {
// 跨站脚本的 xss 配置nacos自行添加 // 跨站脚本的 xss 配置nacos自行添加

Loading…
Cancel
Save