]> git.argeo.org Git - gpl/argeo-slc.git/blob - eclipse/plugins/org.argeo.slc.client.hibernate/META-INF/spring/core.xml
solving the hibernate transaction problem. New solution with aspects.
[gpl/argeo-slc.git] / eclipse / plugins / org.argeo.slc.client.hibernate / META-INF / spring / core.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <beans xmlns="http://www.springframework.org/schema/beans"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
4 xmlns:aop="http://www.springframework.org/schema/aop"
5 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
6 http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
7 ">
8
9 <bean id="processListTableContent" class="org.argeo.slc.client.core.ProcessListTableContent">
10 <property name="slcExecutionDao" ref="slcExecutionDao" />
11 </bean>
12
13 <!-- Events -->
14 <aop:aspectj-autoproxy />
15 <bean id="contentProviderAspect" class="org.argeo.slc.client.aspects.ContentProviderAspect">
16 <property name="sessionFactory" ref="sessionFactory" />
17 <property name="transactionManager" ref="transactionManager" />
18 </bean>
19 </beans>