博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
读取spring配置文件的方法(spring读取资源文件)
阅读量:6261 次
发布时间:2019-06-22

本文共 980 字,大约阅读时间需要 3 分钟。

1.spring配置文件

2.读取属性方法

ApplicationContext c=new ClassPathXmlApplicationContext("classpath:applicationContext-datasource.xml");Properties p=(Properties)c.getBean("configproperties");System.out.println(p.getProperty("jdbcOrcale.driverClassName"));

直接读取方式:

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配置:

转载地址:http://lqzpa.baihongyu.com/

你可能感兴趣的文章
封装获取连续数字的拼接
查看>>
gdb调试
查看>>
第一周 从C走进C++ 003 位运算
查看>>
k8s第一个实例创建redis集群服务
查看>>
Postgresql 查看建表语句 命令
查看>>
git操作
查看>>
技术文档翻译-------glove readme(1)
查看>>
编码格式
查看>>
Mybatis+mysql动态分页查询数据案例——配置映射文件(HouseDaoMapper.xml)
查看>>
poj 2828【线段树 单点更新】
查看>>
java构建二叉树和二叉树的遍历
查看>>
svn+jenkins+docker 发布 java 项目(maven)
查看>>
一步一步学NUnit(1)
查看>>
android开发
查看>>
1027 方程组的根
查看>>
菜鸟网络股权分配:阿里巴巴占51%的股份
查看>>
《Pro SQL Server Internals》部分翻译(P36-P45)
查看>>
菜鸟nginx源代码剖析数据结构篇(十) 自旋锁ngx_spinlock
查看>>
广州高清卫星地图 用百度卫星地图server下载 含标签、道路数据叠加 可商用
查看>>
mysql手记
查看>>