手机
当前位置:查字典教程网 >编程开发 >Java >读取spring配置文件的方法(spring读取资源文件)
读取spring配置文件的方法(spring读取资源文件)
摘要:1.spring配置文件复制代码代码如下:2.读取属性方法复制代码代码如下:ApplicationContextc=newClassPath...

1.spring配置文件

复制代码 代码如下:

<bean id="configproperties"

>

<property name="location" value="classpath:jdbc.properties"/>

</bean>

2.读取属性方法

复制代码 代码如下:

ApplicationContext c=new ClassPathXmlApplicationContext("classpath:applicationContext-datasource.xml");

Properties p=(Properties)c.getBean("configproperties");

System.out.println(p.getProperty("jdbcOrcale.driverClassName"));

另一个朋友提供的读取spring配置文件的方法,也分享一下吧

直接读取方式:

复制代码 代码如下:

public void test() throws IOException

{

Resource resource = ApplicationContextFactory.getApplicationContext().getResource("classpath:com/springdemo/resource/test.txt");

File file = resource.getFile();

byte[] buffer =new byte[(int) file.length()];

FileInputStream is =new FileInputStream(file);

is.read(buffer, 0, buffer.length);

is.close();

String str = new String(buffer);

System.out.println(str);

}

通过spring配置方式读取:

复制代码 代码如下:

package com.springdemo.resource;

import org.springframework.core.io.Resource;

public class ResourceBean {

private Resource resource;

public Resource getResource() {

return resource;

}

public void setResource(Resource resource) {

this.resource = resource;

}

}

spring bean配置:

复制代码 代码如下:

<>

<bean id="resourceBean" >

<property name="resource" value="classpath:/com/springdemo/resource/test.txt" ></property>

</bean>

【读取spring配置文件的方法(spring读取资源文件)】相关文章:

解决JTable排序问题的方法详解

java删除文件和文件夹具体实现

java判断远程服务器上的文件是否存在的方法

Java读取Excel文件内容的简单实例

java读取word-excel-ppt文件代码

JAVA读取属性文件的几种方法总结

java获取properties属性文件示例

java 全角半角字符转换的方法实例

java string类的常用方法详细介绍

java读写二进制文件的解决方法

精品推荐
分类导航