读取.properties属性文件的方式
spring框架下:
1.使用@Value注解读取.properties文件的属性内容。
2.使用org.springframework.core.io.support.PropertiesLoaderUtils读取,
Properties properties = PropertiesLoaderUtils.loadAllProperties("redis-env.properties");
String deviceToken = properties.getProperty("deviceToken.table.name");
String effectTable = properties.getProperty("userEffectList.table.name");
网友评论