当前位置: 编程技术>java/j2ee
读取spring配置文件的方法(spring读取资源文件)
来源: 互联网 发布时间:2014-11-02
本文导语: 1.spring配置文件 代码如下: 2.读取属性方法 代码如下:ApplicationContext c=new ClassPathXmlApplicationContext("classpath:applicationContext-datasource.xml");Properties p=(Properties)c.getBean("configproperties");System.out.println(p.getProperty("jdbcOrcal...
1.spring配置文件
代码如下:
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配置:
代码如下: