java -jar 로 application.yml 오버라이딩
application.yml playground: myValue: 32 myBool: false TestController.java @RestController @RequestMapping public class TestController { @Value("${playground.myValue}") private int propertyTest; @Value("${playground.myBool}") private boolean propertyBool; @GetMapping("/") public void indexHandler(){ System.out.println("@@@@ propertyTest : " + propertyTest); System.out.println("@@@@ propertyBool :..
2019.07.04