Spring boot Properties 를 가져오는 어노테이션인 value 가 안먹는 경우가 있어서
다른 우회 코드를 찾아 사용
//선언
@Autowired
private Environment env;
//사용
env.getProperty("property");
Spring boot Properties 를 가져오는 어노테이션인 value 가 안먹는 경우가 있어서
다른 우회 코드를 찾아 사용
//선언
@Autowired
private Environment env;
//사용
env.getProperty("property");