摘要: ##内部配置加载顺序 SpringBoot 启动会扫描以下位置的application.properties或者application.yml文件作为Spring boot的默认配置文件 –file:./config/ –file:./ –classpath:/config/ –classpath: 阅读全文
posted @ 2020-07-12 19:46 星光Starsray 阅读(1042) 评论(0) 推荐(0) 编辑
摘要: 首先回忆一下在没有使用SpringBoot之前也就是传统的spring项目中是如何读取配置文件,通过I/O流读取指定路径的配置文件,然后再去获取指定的配置信息。 ##传统项目读取配置方式 读取xml配置文件 public String readFromXml(String xmlPath, Stri 阅读全文
posted @ 2020-07-12 16:59 星光Starsray 阅读(1668) 评论(0) 推荐(0) 编辑