package com.doumee.config;
|
|
import lombok.Data;
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
import org.springframework.stereotype.Component;
|
|
import java.util.LinkedHashSet;
|
|
@Data
|
@Component
|
@ConfigurationProperties("gateway")
|
public class GatewayFilterProperties {
|
private LinkedHashSet<String> skipLoginFilterUrls;
|
}
|