| 123456789101112131415161718192021 |
- package com.xindazhou.gateway.config;
- import lombok.Data;
- import java.util.ArrayList;
- import java.util.List;
- /**
- * Gateway 公开接口配置属性
- *
- * @author xindazhou
- */
- @Data
- public class GatewayPublicEndpointsProperties {
- /**
- * 公开接口路径列表(支持 Ant 路径模式)
- */
- private List<String> publicEndpoints = new ArrayList<>();
- }
|