source: ether_megapoli/trunk/service/implementation/service-context.xml @ 484

Last change on this file since 484 was 473, checked in by vmipsl, 12 years ago

BO insertion données

File size: 1.2 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
3
4<beans>
5    <bean id="etherServiceTarget" class="com.ether.EtherServiceImpl">
6        <property name="plateformDAO" ref="refPlateformDAO"/>
7        <property name="parameterDAO" ref="refParameterDAO"/>
8        <property name="valueDAO" ref="refValueDAO"/>
9        <property name="measureDAO" ref="refMeasureDAO"/>
10        <property name="userDAO" ref="refUserDAO"/>
11        <property name="personDAO" ref="refPersonDAO"/>
12        <property name="mcoDAO" ref="refMcoDAO"/>
13        <property name="jeuDAO" ref="refJeuDAO"/>
14    </bean>
15    <bean id="etherService" parent="transactionProxy">
16        <property name="target">
17            <ref bean="etherServiceTarget"/>
18        </property>
19        <property name="transactionAttributeSource">
20            <bean class="org.springframework.transaction.annotation.AnnotationTransactionAttributeSource"/>
21        </property>
22    </bean>
23
24    <bean id="etherPlotService" class="com.ether.EtherPlotServiceImpl">
25        <property name="etherService" ref="etherService"/>
26    </bean>
27
28</beans>
Note: See TracBrowser for help on using the repository browser.