-
properties2014/:: Framework :: 2014. 9. 18. 15:18
<!-- property : setter injection -->
<bean id="player01" class="spring.service.dice.play.Player02">
<property name="dice">
<ref bean="diceA" />
</property>
</bean>
<bean id="player02" class="spring.service.dice.play.Player02">
<property name="dice" ref="diceB" />
</bean>
<!-- constructor-arg : constructor injection -->
<bean id="player03" class="spring.service.dice.play.Player02">
<constructor-arg>
<ref bean="diceC"/>
</constructor-arg>
</bean>
<bean id="player04" class="spring.service.dice.play.Player02">
<constructor-arg ref="diceA" />
</bean>
'2014 > :: Framework ::' 카테고리의 다른 글
typeAliases (0) 2014.09.22 mybatis ibatis 차이 (0) 2014.09.22 스프링 (0) 2014.09.18 스프링 2일차 (0) 2014.09.18 스프링 1일 째 (0) 2014.09.17