Skip to content
Snippets Groups Projects
Commit 27363768 authored by felmer's avatar felmer
Browse files

LMS-740 using HibernateTransformer

SVN: 9790
parent 86918ab7
No related branches found
No related tags found
No related merge requests found
...@@ -82,12 +82,27 @@ ...@@ -82,12 +82,27 @@
<constructor-arg ref="request-context-provider" /> <constructor-arg ref="request-context-provider" />
</bean> </bean>
<bean id="etl-service" class="ch.systemsx.cisd.openbis.generic.server.ETLService"> <bean id="etl-service" class="org.springframework.aop.framework.ProxyFactoryBean">
<constructor-arg ref="session-manager" /> <property name="proxyInterfaces">
<constructor-arg ref="dao-factory" /> <list>
<constructor-arg ref="common-business-object-factory" /> <value>ch.systemsx.cisd.openbis.generic.shared.ILIMSService</value>
</list>
</property>
<property name="target">
<bean class="ch.systemsx.cisd.openbis.generic.server.ETLService">
<constructor-arg ref="session-manager" />
<constructor-arg ref="dao-factory" />
<constructor-arg ref="common-business-object-factory" />
</bean>
</property>
<property name="interceptorNames">
<list>
<value>hibernate-transformer</value>
</list>
</property>
</bean> </bean>
<!-- <!--
// Hibernate transformer // Hibernate transformer
--> -->
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment