applicationContext.xml 配置属性和对象ref指向

前端之家收集整理的这篇文章主要介绍了applicationContext.xml 配置属性和对象ref指向前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<strong><span style="font-size:18px;"><bean id = "helloworld" class="com.huoxin.bean1.HelloWorld">
	<property name="name" value="123"></property>
	<property name="age" value="123"></property>
	<property name="number" value="123"></property>
	<property name="phone" value="123"></property>
	<property name="tt" ref="cc"></property>
</bean>

<bean id ="cc" class="com.huoxin.bean1.TT">
	<property name="ppp" value = "250"></property>
</bean></span></strong>


tt是对象,需要自己创建实体类, ppp是TT尸体的属性

原文链接:https://www.f2er.com/xml/295096.html

猜你在找的XML相关文章