读取.Properties文件以及Spring注解读取文件内容

 public class Main {

     public static void main(String[] args) throws IOException {
//创建Properties对象
Properties prop = new Properties();
//读取classPath中的properties文件
prop.load(Main.class.getClassLoader().getResourceAsStream("bean.properties"));
//根据键取出值
String className = prop.getProperty("className");
System.out.println(className); }
}
  输出className对应的值

封装的工具类

 public class PropertyUtil {

     private static Properties prop = new Properties();

     static {
try {
prop.load(PropertyUtil.class.getClassLoader().getResourceAsStream("calculator.properties"));
} catch (IOException e) {
throw new RuntimeException(e.getMessage());
}
} /**
* 根据Name获取Property
* @param name
* @return
*/
public static String getProperty(String name) {
return prop.getProperty(name);
} /**
* 获取所有的Property
* @return
*/
public static List<String> getBeanFactoryClass() {
List<String> list = new ArrayList<>();
Set<String> keys = prop.stringPropertyNames();
for (String key : keys) {
list.add(prop.getProperty(key));
}
return list;
}
}

转载地址:https://www.cnblogs.com/hhmm99/p/9803119.html

内容很简单,但是感觉很有用

下面是Spring的通过@Value注解读取.properties配置内容

在Spring-dao.xml的配置文件中配置

<util:properties id="Prop" location="classpath:db.properties" />

内容

 salt=helloworld

使用注解获取配置内容

 //从db.properties文件中获取的值
@Value("#{Prop.salt}")
private String salt;
上一篇:Android 数字签名学习笔记


下一篇:Navicat 12.x for MySQL最新版安装破解教程(附安装包和注册机,全网独家可用