[Spring] Spring-Cloud-Config, application.yml 컨피그 가져오기

동민·2021년 11월 17일
0

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 도 마찬가지로 적용!

profile
BE Developer

0개의 댓글