spring学习笔记--一

属性注入的Setter方式:
1.简单属性
<bean id="service" class="com.luojing.test.serviceimp.PersonServiceImp">
<property name="id" value="11"/>
<property name="name" value="adag"/>
</bean>

2.对象属性—外部bean注入:
<bean id="service" class="com.luojing.test.serviceimp.PersonServiceImp">
<property name="personDao" ref="personDao"/>
</bean>

对象属性—内部bean注入:
<bean id="service" class="com.luojing.test.serviceimp.PersonServiceImp">
<bean class="com.luojing.test.daoimp.PersonDaoImp"/>
</bean>

说明:内部bean不能被外部的的其它bean使用,所以有无id都没关系。
3.集合属性
<bean id="service" class="com.luojing.test.serviceimp.PersonServiceImp">
<property name="sets">
<set>
<value>第一个set元素</value> 
<value>第二个set元素</value> 
<value>第三个set元素</value> 
</set>
</property>
<property name="lists">
<list>
<value>第一个list元素</value> 
<value>第二个list元素</value> 
<value>第三个list元素</value>
</list>
</property>
<property name="properties">
<props>
<prop key="key1">value1</prop> 
<prop key="key2">value2</prop> 
<prop key="key3">value3</prop> 
</props>
</property>
<property name="maps">
<map>
<entry key="key-1" value="value-1"/> 
<entry key="key-2" value="value-2"/> 
<entry key="key-3" value="value-3"/> 
</map>
</property>
</bean>

属性注入构造器方式:
<bean id="service" class="com.luojing.test.serviceimp.PersonServiceImp">
<constructor-arg index="0" value="某某"/>
<constructor-arg index="1" type="com.luojing.test.dao.PersonDao" ref="personDao"/>
<constructor-arg index="2">
<list>
<value>List值一</value>
<value>List值二</value>
<value>List值三</value>
</list>
</constructor-arg>
</bean>

你可能感兴趣的:(java,spring,bean)