springboot---->获取不到yml配置文件指定的值

 import org.springframework.boot.SpringApplication;
 import org.springframework.boot.autoconfigure.SpringBootApplication;
 @SpringBootApplication
 public class App {
      public static void main(String[] args) {
         SpringApplication app = new SpringApplication(App.class);
         ConfigurableApplicationContext context = app.run(args);
         System.out.println(context.getEnvironment().getProperty("jdbc.pwd"));
 9         context.close();
     }
 }

apllication.yml 放置在classpath路径下1 jdbc:2   pwd: 123456  #冒号和数字之间有一个空格,没有否则获取失败,pwd前面有缩进两个字符

ps:版本spring-4.3.2-release,springboot-1.4
上一篇:剑指offer编程题Java实现——面试题13在O(1)时间内删除链表节点


下一篇:[译] 开发者角度,王道之论:Android 与 Windows Phone