package org.dromara.gateway.config.properties;
|
|
import lombok.Data;
|
import lombok.NoArgsConstructor;
|
import lombok.experimental.Accessors;
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
import org.springframework.cloud.context.config.annotation.RefreshScope;
|
import org.springframework.context.annotation.Configuration;
|
|
import java.util.ArrayList;
|
import java.util.List;
|
|
/**
|
* 放行白名单配置
|
*
|
* @author ruoyi
|
*/
|
@Data
|
@NoArgsConstructor
|
@Configuration
|
@RefreshScope
|
@ConfigurationProperties(prefix = "security.ignore")
|
public class IgnoreWhiteProperties {
|
/**
|
* 放行白名单配置,网关不校验此处的白名单
|
*/
|
private List<String> whites = new ArrayList<>();
|
|
}
|