首页 > 代码库 > Spring将classpath下的 .properties文件数据读出放到map中,在初始化时加载
Spring将classpath下的 .properties文件数据读出放到map中,在初始化时加载
因为项目需要需要将配置文件中的键值对读出放到map中
格式为:
001=123456789
Appcontext.xml中添加配置:
<bean id="loadKeyFromProperties" class="com.;landau.init.LoadKeyFormProperties"> <property name="keyFileResource"> <value>classpath:keys.properties</value> </property> </bean>
java代码:
public class LoadKeyFormProperties implements InitializingBean { private Resource keyFileResource; private static Map<String, String> map = new HashMap<String, String>(); protected static volatile boolean initialized = false; public static Map<String, String> getKey() { return map; } public void setKeyFileResource(Resource keyFileResource) { this.keyFileResource = keyFileResource; } /** * 将键值对取到集合内 */ private void loadKeyFormProperties() { if (initialized) { return; } InputStream is = null; try { is = keyFileResource.getInputStream(); BufferedReader br = new BufferedReader(new InputStreamReader(is)); String str = null; while ((str = br.readLine()) != null) { String[] data = str.split("="); map.put(data[0], data[1]); } initialized = true; } catch (Exception e) { } finally { is.close(); } } @Override public void afterPropertiesSet() throws Exception { loadKeyFormProperties(); } }
Spring将classpath下的 .properties文件数据读出放到map中,在初始化时加载
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。