手机
当前位置:查字典教程网 >编程开发 >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读取资源文件)】相关文章:

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

Spring实现文件上传(示例代码)

利用java操作Excel文件的方法

Java读写文件创建文件夹多种方法示例详解

java读取文件显示进度条的实现方法

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

java 获取项目文件路径实现方法

log4j的配置文件详细解析

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

java读取文件内容的三种方法代码片断分享(java文件操作)

精品推荐
分类导航