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

Last change on this file since 184 was 184, checked in by vmipsl, 13 years ago

Servlet _ TimeSerie? : double axes

File size: 912 bytes
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    </bean>
10    <bean id="etherService" parent="transactionProxy">
11        <property name="target">
12            <ref bean="etherServiceTarget"/>
13        </property>
14        <property name="transactionAttributeSource">
15            <bean class="org.springframework.transaction.annotation.AnnotationTransactionAttributeSource"/>
16        </property>
17    </bean>
18
19    <bean id="etherPlotService" class="com.ether.EtherPlotServiceImpl">
20        <property name="etherService" ref="etherService"/>
21    </bean>
22
23</beans>
Note: See TracBrowser for help on using the repository browser.