王朝网络
分享
 
 
 

快速上手Spring--3. 加载Bean的配置文件

王朝java/jsp·作者佚名  2006-01-31
宽屏版  字体: |||超大  

1. 创建项目

· 新建一个Java

Project:SpringBeanFile,注意要导入用户库Spring。

· 这是完成后整个项目的结构(预览一下):

· 项目源码下载(不包含库文件):http://free.ys168.com/?javamxj

Spring目录下面。

2. 编写类文件

· 下面开始创建一个新类:BeanFile

;包名:javamxj.spring.beanfile

BeanFile.java

package javamxj.spring.beanfile;

public class BeanFile {

private String beanFile = "多种方式加载Bean的配置文件";

public void setBeanFile(String beanFile) {

this.beanFile =

beanFile;

}

public String getBeanFile()

{

return

beanFile;

}

}

·

新建Test.java,测试一下。

Test.java

package javamxj.spring.beanfile;

import java.io.FileInputStream;

import java.io.FileNotFoundException;

import java.io.InputStream;

import org.springframework.beans.factory.BeanFactory;

import org.springframework.beans.factory.support.BeanDefinitionRegistry;

import org.springframework.beans.factory.support.DefaultListableBeanFactory;

import org.springframework.beans.factory.support.PropertiesBeanDefinitionReader;

import org.springframework.beans.factory.xml.XmlBeanFactory;

import org.springframework.context.ApplicationContext;

import org.springframework.context.support.ClassPathXmlApplicationContext;

import org.springframework.core.io.ClassPathResource;

import org.springframework.core.io.FileSystemResource;

import org.springframework.core.io.InputStreamResource;

import org.springframework.core.io.Resource;

public class Test {

public static void main(String[] args) {

// 直接调用HelloBean

BeanFile bf =

new

BeanFile();

System.out.println(bf.getBeanFile());

/**

* 利用XmlBeanFactory(Resource resource)

*

这里Resource必须是xml格式

*

Resource包括:AbstractResource,

ClassPathResource,

FileSystemResource,

* InputStreamResource,

ServletContextResource,

UrlResource

*/

/*

* 利用 InputStreamResource(InputStream

inputStream)

*

要将bean.xml放在项目根目录下

*/

InputStream is = null;

try {

is = new FileInputStream("bean1.xml");

} catch (FileNotFoundException e)

{

e.printStackTrace();

}

Resource resource

= new

InputStreamResource(is);

sayHello(resource);

/*

* 利用

ClassPathResource(String path)

* 要将bean.xml放在源文件夹(src)目录下

*/

resource = new ClassPathResource("bean2.xml");

sayHello(resource);

/*

* 利用

FileSystemResource(String path)

* 要将bean.xml放在项目根目录下

*/

resource = new FileSystemResource("bean3.xml");

sayHello(resource);

/*

* 利用

Properties

*

要将bean.properties放在类路径--源文件夹(src)目录下

*/

BeanDefinitionRegistry reg

= new

DefaultListableBeanFactory();

PropertiesBeanDefinitionReader reader =

new

PropertiesBeanDefinitionReader(

reg);

reader.loadBeanDefinitions(new ClassPathResource("bean.properties"));

BeanFactory

factory = (BeanFactory) reg;

bf = (BeanFile)

factory.getBean("beanFile");

System.out.println("利用 " + bf.getBeanFile() + " 加载 Bean.properties");

/*

* 利用 ApplicationContext

*

要将bean.xml放在类路径--源文件夹(src)目录下

*/

ApplicationContext appContext = new

ClassPathXmlApplicationContext(

"bean4.xml");

bf = (BeanFile)

appContext.getBean("beanFile");

System.out.println("利用 " + bf.getBeanFile() + " 加载 Bean.xml");

}

public static void sayHello(Resource

resource) {

BeanFactory factory = new

XmlBeanFactory(resource);

BeanFile bf = (BeanFile)

factory.getBean("beanFile");

System.out.println("利用 " + bf.getBeanFile() + " 加载 Bean.xml");

}

}

3. 配置文件

由上面的Test.java可知,这里一共需要四个XML文件和一个Properties文件,现在分别建立。

·

bean1.xml放在项目根目录下:

bean1.xml

<?xml version="1.0" encoding="GBK"?>

<!DOCTYPE

beans PUBLIC "-//SPRING/DTD BEAN/EN"

"http://www.springframework.org/dtd/spring-beans.dtd">

<beans>

<bean

id="beanFile"

class="javamxj.spring.beanfile.BeanFile">

<property

name="beanFile">

<value>InputStreamResource(InputStream

inputStream)</value>

</property>

</bean>

</beans>

bean2.xml、bean3.xml、bean4.xml与bean1.xml相似,仅仅需要替换一下<value>值即可。重要的注意文件的存放位置。这里只给出不同的代码;

·

bean2.xml放在源文件夹(src)目录下:

bean2.xml(部分)

<property name="beanFile">

<value>ClassPathResource(String path)</value>

</property>

·

bean3.xml放在项目根目录下:

bean3.xml(部分)

<property name="beanFile">

<value>FileSystemResource(String path)</value>

</property>

·

bean4.xml放在源文件夹(src)目录下:

bean4.xml(部分)

<property name="beanFile">

<value>ApplicationContext</value>

</property>

Spring也可以使用属性文件来定义配置文件,如下:

·

bean.properties放在源文件夹(src)目录下:

bean.properties

beanFile.class=javamxj.spring.beanfile.BeanFile

beanFile.beanFile=properties

·

还需要将上文《快速上手Spring--2.HelloWorld(2)》中的log4j.properties复制到src目录下。

4. 运行程序

右击Test.java,运行程序,控制台输出如下:

多种方式加载Bean的配置文件

利用

InputStreamResource(InputStream inputStream) 加载 Bean.xml

利用

ClassPathResource(String path) 加载 Bean.xml

利用 FileSystemResource(String path)

加载 Bean.xml

利用 properties 加载 Bean.properties

利用 ApplicationContext 加载

Bean.xml

5. 小结

这篇文章主要谈论了如何加载Spring的配置文件,一般来说,就是BeanFactory和ApplicationContext。最常使用的、简单的BeanFactory实现是org.springframework.beans.factory.xml.XmlBeanFactory,其加载方式为:

BeanFactory factory = new

XmlBeanFactory(Resource resource)

这里resource必须是xml格式。Resource包括:

AbstractResource, ClassPathResource, FileSystemResource, InputStreamResource,

ServletContextResource, UrlResource。这篇文章 谈了常用的三种:ClassPathResource, FileSystemResource,

InputStreamResource。

ApplicationContext包括了BeanFactory的所有功能,也要比BeanFactory强大的多(以后会详细介绍的)。这里只简单的使用了ClassPathXmlApplicationContext加载了Bean配置文件。你可以将log4j.properties中的“Warn”改为“Debug”, 对比一下和ClassPathResource的输出,

在Eclipse中,bean2.xml、bean4xml虽然都是放在源文件夹(src)目录下,但实际上,是由已经编译好的Test.class从类文件夹(这里是bin文件夹)中加载的。

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
>>返回首页<<
推荐阅读
 
 
频道精选
 
静静地坐在废墟上,四周的荒凉一望无际,忽然觉得,凄凉也很美
© 2005- 王朝网络 版权所有