From: <fg...@us...> - 2009-02-22 20:27:35
|
Revision: 1060 http://openutils.svn.sourceforge.net/openutils/?rev=1060&view=rev Author: fgiust Date: 2009-02-22 20:27:29 +0000 (Sun, 22 Feb 2009) Log Message: ----------- fix configuration Modified Paths: -------------- trunk/openutils-configuration-services/src/test/resources/spring-managers.xml Modified: trunk/openutils-configuration-services/src/test/resources/spring-managers.xml =================================================================== --- trunk/openutils-configuration-services/src/test/resources/spring-managers.xml 2009-02-22 20:26:46 UTC (rev 1059) +++ trunk/openutils-configuration-services/src/test/resources/spring-managers.xml 2009-02-22 20:27:29 UTC (rev 1060) @@ -1,27 +1,6 @@ <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd"> <beans> - <bean id="configurationManager" class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean" - autowire="byType"> - <property name="transactionManager" ref="transactionManager" /> - <property name="transactionAttributes"> - <props> - <prop key="*">PROPAGATION_REQUIRED</prop> - </props> - </property> - <property name="target"> - <bean class="it.openutils.configuration.services.ConfigurationManagerImpl" autowire="byType"></bean> - </property> + <bean id="configurationManager" class="it.openutils.configuration.services.ConfigurationManagerImpl" autowire="byType"></bean> + <bean id="referenceManager" class="it.openutils.configuration.services.ReferenceManagerImpl" autowire="byType"> </bean> - <bean id="referenceManager" class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean" - autowire="byType"> - <property name="transactionManager" ref="transactionManager" /> - <property name="transactionAttributes"> - <props> - <prop key="*">PROPAGATION_REQUIRED</prop> - </props> - </property> - <property name="target"> - <bean class="it.openutils.configuration.services.ReferenceManagerImpl" autowire="byType"></bean> - </property> - </bean> </beans> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |