source: tapas/service/implementation/service-context.xml @ 376

Last change on this file since 376 was 376, checked in by rboipsl, 12 years ago

Creation projet tapas

File size: 664 bytes
Line 
1<?com.medias.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        </bean>
9
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</beans>
Note: See TracBrowser for help on using the repository browser.