All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.mengweijin.quickboot.framework.xss.XssProperties Maven / Gradle / Ivy

There is a newer version: 1.0.45
Show newest version
package com.github.mengweijin.quickboot.framework.xss;

import com.github.mengweijin.quickboot.framework.constant.Const;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.validation.annotation.Validated;

/**
 * @author Meng Wei Jin
 * @description
 *
 * 加@Validated可对配置属性进行数据格式校验
 **/
@ConfigurationProperties(prefix = "quickboot.xss")
@Data
@Validated
public class XssProperties {

    /**
     * xss过滤开关.
     */
    private Boolean enabled = true;

    /**
     * 不需要xss校验的链接(配置示例:/system/*,/tool/*)
     */
    private String excludes = Const.EMPTY;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy