RuoYi
2020-05-24 3da7aea540b1c381303769607a0b11ed5ba98128
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.ruoyi.gateway.config.properties;
 
import java.util.ArrayList;
import java.util.List;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.cloud.context.config.annotation.RefreshScope;
import org.springframework.context.annotation.Configuration;
 
/**
 * 放行终端配置
 * 
 * @author ruoyi
 */
@Configuration
@RefreshScope
@ConfigurationProperties(prefix = "ignore")
public class IgnoreClientProperties
{
    /**
     * 放行终端配置,网关不校验此处的终端
     */
    private List<String> clients = new ArrayList<>();
 
    public List<String> getClients()
    {
        return clients;
    }
 
    public void setClients(List<String> clients)
    {
        this.clients = clients;
    }
}