分享
 
 
 

快速上手Spring--7. ref的用法

王朝java/jsp·作者佚名  2006-01-10
窄屏简体版  字體: |||超大  

这篇文章来谈谈《Spring Framework 开发参考手册》的3.3.2小节中的ref的用法。

ref元素是用在property中,来设置需要引用的容器管理的其它Bean。

它的用法:<ref

bean|local|parent="someBean">,这里主要分析一下这三个参数的作用。

这次先看实例,再进行讲解。

· 先建立一个包:javamxj.spring.basic.ref

,然后把以下5个文件放在这个包下。

HelloBean.java

package javamxj.spring.basic.ref;

public class HelloBean {

private String hello;

public String getHello() {

return hello;

}

public void setHello(String hello) {

this.hello =

hello;

}

}

HelloDate.java

package javamxj.spring.basic.ref;

import java.util.Date;

public class HelloDate {

private Date date;

private HelloBean

hb;

public

void setDate(Date date) {

this.date = date;

}

public void setHb(HelloBean hb)

{

this.hb =

hb;

}

public void sayHello() {

System.out.println(hb.getHello()

+ " " + date.toLocaleString());

}

}

beans.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="helloBean"

class="javamxj.spring.basic.ref.HelloBean">

<property

name="hello"

value="Hello!

Child Bean." />

</bean>

<bean

id="dateBean"

name="#date"

class="java.util.Date"/>

<bean id="hd1"

class="javamxj.spring.basic.ref.HelloDate">

<property

name="hb">

<ref

bean="helloBeanParent"/>

</property>

<property

name="date">

<ref

bean="#date"/>

<!--<ref

bean="dateBean"/>-->

</property>

</bean>

<bean

id="hd2"

class="javamxj.spring.basic.ref.HelloDate">

<property

name="hb">

<ref

local="helloBean"/>

</property>

<property

name="date">

<ref

local="dateBean"/>

</property>

</bean>

<bean

id="hd3"

class="javamxj.spring.basic.ref.HelloDate">

<property

name="hb">

<ref

parent="helloBean"/>

</property>

<property

name="date">

<bean

class="java.util.Date"/>

</property>

</bean>

</beans>

parent.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="helloBean"

class="javamxj.spring.basic.ref.HelloBean">

<property

name="hello"

value="Hello!

Javamxj." />

</bean>

<bean

id="helloBeanParent" class="javamxj.spring.basic.ref.HelloBean">

<property

name="hello"

value="Hello!

Parent Bean." />

</bean>

</beans>

Main.java

package javamxj.spring.basic.ref;

import org.springframework.beans.factory.BeanFactory;

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

import org.springframework.core.io.ClassPathResource;

public class Main {

public static void main(String[] args) {

BeanFactory parent = new

XmlBeanFactory(new

ClassPathResource(

"javamxj/spring/basic/ref/parent.xml"));

BeanFactory child = new

XmlBeanFactory(new

ClassPathResource(

"javamxj/spring/basic/ref/beans.xml"),

parent);

HelloDate hd1 = (HelloDate) child.getBean("hd1");

HelloDate hd2 = (HelloDate)

child.getBean("hd2");

HelloDate

hd3 = (HelloDate) child.getBean("hd3");

hd1.sayHello();

hd2.sayHello();

hd3.sayHello();

}

}

·运行Main.java,输出结果如下:

Hello! Parent Bean. 2005-8-10 22:25:56

Hello! Child Bean. 2005-8-10

22:25:56

Hello! Javamxj. 2005-8-10 22:25:56

OK!这里主要分析beans.xml、Main.java这两个文件。对于Main.java要注意的是如何加载“parent”的,重点看看beans.xml中ref元素的用法。

首先定义两个bean:helloBean、dateBean,分别指向HelloBean类和Date类。然后定义了hd1、hd2、hd3等三个bean,都指向HelloDate类。

·hd1:

property标签中的“helloBeanParent”并不存在于beans.xml中,而是在parent.xml中,使用<ref

bean="someBean">可以从其它bean配置文件中寻找需要加载的目标bean。bean属性的值可以同目标bean的id属性相同,也可以同它的name属性中任意的一个值相同。

·hd2:

property标签中的“helloBean”如果不存在于beans.xml中,则XML解析器会提示错误。<ref

local="someBean">只能这个bean配置文件中寻找需要加载的目标bean,而且local属性值必须同目标bean的id属性相同。

·hd3:

property标签中的“helloBean”同时存在于beans.xml和parent.xml中,使用<ref

bean="someBean">则会优先从beans.xml中寻找需要加载的目标bean,如果需要从parent.xml中加载目标bean,则需使用<ref

parent="someBean">。在设置date时,使用的是内联bean,这时可以不要任何id或name定义。

好了,就说这么多了。

这篇文章源代码下载(不包含库文件):http://free.ys168.com/?javamxj

Spring目录下面的SpringBasic.zip。

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
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- 王朝網路 版權所有