xm
2024-06-14 722af26bc6fec32bb289b1df51a9016a4935610f
提交 | 用户 | 时间
722af2 1 package com.dl.framework.config.properties;
X 2
3 import lombok.Data;
4 import org.springframework.boot.context.properties.ConfigurationProperties;
5 import org.springframework.stereotype.Component;
6
7 /**
8  * xss过滤 配置属性
9  *
10  * @author Lion Li
11  */
12 @Data
13 @Component
14 @ConfigurationProperties(prefix = "xss")
15 public class XssProperties {
16
17     /**
18      * 过滤开关
19      */
20     private String enabled;
21
22     /**
23      * 排除链接(多个用逗号分隔)
24      */
25     private String excludes;
26
27     /**
28      * 匹配链接
29      */
30     private String urlPatterns;
31
32 }