source: ether_statistics/service/implementation/service-context.xml @ 667

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

account BD

File size: 648 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="accountDAO" ref="refAccountDAO"/>
7    </bean>
8    <bean id="etherService" parent="transactionProxy">
9        <property name="target">
10            <ref bean="etherServiceTarget"/>
11        </property>
12        <property name="transactionAttributeSource">
13            <bean class="org.springframework.transaction.annotation.AnnotationTransactionAttributeSource"/>
14        </property>
15    </bean>
16
17</beans>
Note: See TracBrowser for help on using the repository browser.