Good morning,

Could someone tell me where to put bean.xml (spring configuration)? It is not shown in the following document

http://www.vaannila.com/spring/spring-ioc-1.html

Thanks a lot!
--
Lu Ying



bean.xml
=================
01.<?xml version="1.0" encoding="UTF-8"?>
02.<beans xmlns="http://www.springframework.org/schema/beans";
03.xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
04.xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd";>
05.
06. <bean id="springQuizMaster" class="com.vaannila.SpringQuizMaster"></bean> 07. <bean id="strutsQuizMaster" class="com.vaannila.StrutsQuizMaster"></bean>

08.    <bean id="quizMasterService" class="com.vaannila.QuizMasterService">

09.        <property name="quizMaster">

10.        <ref local="springQuizMaster"/>
11.        </property>
12.    </bean>
13.
14.</beans>


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org

Reply via email to