码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2017-12-24 18:57:52      阅读:419      评论:0      收藏:0      [点我收藏+]

标签:jdb   toc   配置文件   run   ase   pat   ext.get   获取   有一个   

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

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

ps:版本spring-4.3.2-release,springboot-1.4

 

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

标签:jdb   toc   配置文件   run   ase   pat   ext.get   获取   有一个   

原文地址:http://www.cnblogs.com/mrray1105/p/8098696.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!