application.yml
order:
switch:
enabled: true
# List
except:
userAgent:
botList: botA, BotB, botC, botD
XXXService.java (Service)
public class XXXService {
@Value("${order.switch.enabled}")
private Boolean enabled;
// List
@Value("${except.userAgent.botList}")
private List<String> exceptUserAgentList;
...
}
Spring-Cloud-Config 도 마찬가지로 적용!