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

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

Mise en place 2 couches

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