SpringBoot不读取lproperties⽂件问题⽬录
SpringBoot不读取l/properties⽂件
先说我的问题是什么原因吧
SpringBoot中解析yml⽂件
添加依赖
新增⼯具类
SpringBoot不读取l/properties⽂件
今天写创建了⼀个SpringBoot项⽬,配置⽂件从其他项⽬拷贝了⼀份l
之前⼀直⽤的l
⼼想:l 优先级没有l ⾼,bootstrap配置⽂件肯定没问题
项⽬⼀跑来,发现配置⽂件⾥⾯的内容没读取到。
之后通过各种查资料,才明⽩了l 和l 的区别,不仅仅是优先级的问题。
先说我的问题是什么原因吧
SpringBoot 项⽬中如果没有依赖 spring-cloud-context 的话,是不会读取bootstrap.properties ⽂件
也就是说
如果你的项⽬仅仅是⼀个SpringBoot项⽬,只会识别l配置⽂件。
由于SpringCloud是基于SpringBoot构建的,所有SpringCloud项⽬两种⽂件都会识别,这个时候才有优先级的说
法,SpringCloud项⽬是会优先读取bootstrap配置在读取application配置。
引⽤Spring官⽹的⼀句话
A Spring Cloud application operates by creating a “bootstrap” context, which is a parent context for the main
application. Out of the box it is responsible for loading configuration properties from the external sources, and also decrypting properties in the local external configuration files.
SpringCloud 应⽤是基于⼀个 “bootstrap”的上下⽂运⾏的。
也就说明了 bootstrap这个配置是SpringCloud 应⽤才会⽤的。
什么配置在application配置?什么配置在bootstrap⾥⾯配置?
1、当使⽤ Spring Cloud Config Server 的时候,spring.application.name 和 fig.server.git.uri应该在l ⾥⾯指定
2、⼀些加密解密的配置也应该配置在bootstrap⾥⾯
英⽂好的可以参考
SpringBoot中解析yml⽂件
linux查询sql语句springboot集成log4j2时,需要将操作⽇志记录到数据源。这需要⾃⼰编写数据源连接信息。如下:
不太优雅,数据源是在配置⽂件中是有配置,可是这⾥⼜需要配置⼀次,⽽且后期切换环境给运维也
增加挑战。
怎么从配置⽂件获取参数呢?甚⾄直接从容器中提取数据源?
@Value@Autowired? getBean("dataSource")?
nginx 集部署nonono
这很蛋疼了。springboot启动时最开始就需要加载⽇志配置中的数据源信息,可是这时候spring所有的bean都还未加载,也⽆法通过任何⽅式在spring容器中获取参数配置。
咋搞?⼩弟不才,通过硬写解析yml配置⽂件的⽅法获取配置⽂件中的数据源配置信息。
添加依赖
<dependency>
oracle isdate函数的用法<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
<version>2.11.2</version>
</dependency>
新增⼯具类
import org.springframework.util.ResourceUtils;
import org.yaml.snakeyaml.Yaml;
import java.io.File;
import java.io.FileReader;
import java.io.Reader;
import java.util.Map;
public class YmlUtil {
public static Map<String,Object> getYaml(String filePath){
Yaml yml = new Yaml();
Reader reader = null;
try {
// String filePath = URL("classpath:").getPath() + "/l";
reader = new FileReader(new File(filePath));
} catch (Exception e) {
// TODO: handle exception
dw空格代码e.printStackTrace();
}
return yml.loadAs(reader, Map.class);
}
public static Object getPropValue(Map<String,Object> map,String key){
Map<String,Object> temp = map;
int length = key.split("\\.").length;
for (int i = 0; i < length; i++) {
if(i==length-1){
//叶⼦节点直接获取
(key.split("\\.")[i]);
}else{
temp = (Map<String, Object>)(key.split("\\.")[i]);
}properties是什么文件
}
return null;
}
//使⽤⽅法
public static void main(String[] args) {
try{
Map<String,Object> map = URL("classpath:").getPath() + "/l"); Object val = getPropValue(map,"spring.profiles.active");
}catch (Exception e){
}
}
}
以上为个⼈经验,希望能给⼤家⼀个参考,也希望⼤家多多⽀持。
>distinction毕业成绩
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论