source: geisa/service/implementation/service-context.xml

Last change on this file was 539, checked in by npipsl, 12 years ago

Interrogation des BDD des transitions pour chaque base
Image d'attente lors de la création des graphes

File size: 864 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="geisaServiceTarget" class="com.ether.GeisaServiceImpl">
6        <property name="isotopeG03DAO" ref="refIsotopeG03DAO"/>
7        <property name="isotopeG09DAO" ref="refIsotopeG09DAO"/>
8        <property name="isotopeIasiG03DAO" ref="refIsotopeIasiG03DAO"/>
9        <property name="isotopeIasiG09DAO" ref="refIsotopeIasiG09DAO"/>
10    </bean>
11
12    <bean id="geisaService" parent="transactionProxy">
13        <property name="target">
14            <ref bean="geisaServiceTarget"/>
15        </property>
16        <property name="transactionAttributeSource">
17            <bean class="org.springframework.transaction.annotation.AnnotationTransactionAttributeSource"/>
18        </property>
19    </bean>
20
21</beans>
22
Note: See TracBrowser for help on using the repository browser.