springboot 读取自定义.properties 文件的内容
程序员文章站
2024-03-14 15:17:46
...
1.类上加入注解制定properties文件
@PropertySource("classpath:downloadPath.properties")
2.在变量上加入注解就赋值了
@Value("${com.gl.crpt.fileSite}")
private String site;
3.downloadPath.properties文件内容
com.gl.crpt.fileSite=C:/test/
推荐阅读
-
SpringBoot读取自定义的Properties
-
Springboot读取自定义properties文件和application.properties文件的值
-
springboot 读取自定义.properties 文件的内容
-
SpringBoot 加载自定义 properties文件
-
SpringBoot自定义读取properties
-
JAR包读取jar包内部和外部的配置文件,springboot读取外部配置文件的方法(优先级配置)
-
Java读取properties配置文件时,出现中文乱码的解决方法
-
java实现利用String类的简单方法读取xml文件中某个标签中的内容
-
application.properties文件没有叶子图标,springboot项目启动的时候也报错
-
Java读取properties配置文件时,出现中文乱码的解决方法