source: ether_ndacc/trunk/service/implementation/service-context.xml @ 128

Last change on this file since 128 was 122, checked in by rboipsl, 13 years ago

Cleanup project ndacc from eclipse to intellij

File size: 1.9 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="stationServiceTarget" class="com.ether.StationServiceImpl">
6                <property name="stationDAO" ref="refStationDAO" />
7        </bean>
8        <bean id="stationService" parent="transactionProxy">
9                <property name="target">
10                        <ref bean="stationServiceTarget" />
11                </property>
12                <property name="transactionAttributeSource">
13                        <bean class="org.springframework.transaction.annotation.AnnotationTransactionAttributeSource" />
14                </property>
15        </bean>
16
17        <bean id="instrumentServiceTarget" class="com.ether.InstrumentServiceImpl">
18                <property name="instrumentDAO" ref="refInstrumentDAO" />
19        </bean>
20        <bean id="instrumentService" parent="transactionProxy">
21                <property name="target">
22                        <ref bean="instrumentServiceTarget" />
23                </property>
24                <property name="transactionAttributeSource">
25                        <bean class="org.springframework.transaction.annotation.AnnotationTransactionAttributeSource" />
26                </property>
27        </bean>
28       
29       
30        <bean id="serviceToolsTarget" class="com.ether.ServiceToolsImpl">
31                <property name="plotDAO" ref="refPlotDAO" />
32        </bean>
33        <bean id="serviceTools" parent="transactionProxy">
34                <property name="target">
35                        <ref bean="serviceToolsTarget" />
36                </property>
37                <property name="transactionAttributeSource">
38                        <bean class="org.springframework.transaction.annotation.AnnotationTransactionAttributeSource" />
39                </property>
40        </bean>
41       
42        <bean id="plotServiceTarget" class="com.ether.PlotServiceImpl">
43                <property name="plotDAO" ref="refPlotDAO" />
44        </bean>
45        <bean id="plotService" parent="transactionProxy">
46                <property name="target">
47                        <ref bean="plotServiceTarget" />
48                </property>
49                <property name="transactionAttributeSource">
50                        <bean class="org.springframework.transaction.annotation.AnnotationTransactionAttributeSource" />
51                </property>
52        </bean>
53
54</beans>
Note: See TracBrowser for help on using the repository browser.