source: ether_megapoli/trunk/applets/src/applet-context.xml @ 176

Last change on this file since 176 was 176, checked in by vmipsl, 13 years ago

Applets _ essais

  • Property svn:executable set to *
File size: 1.4 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="appletRefPlateformDAO" class="com.ether.dao.PlateformDAOImpl">
6        <property name="sessionFactory">
7            <ref bean="sessionFactory"/>
8        </property>
9    </bean>
10
11    <bean id="appletRefParameterDAO" class="com.ether.dao.ParameterDAOImpl">
12        <property name="sessionFactory">
13            <ref bean="sessionFactory"/>
14        </property>
15    </bean>
16
17    <bean id="apletRefValueDAO" class="com.ether.dao.ValueDAOImpl">
18        <property name="sessionFactory">
19            <ref bean="sessionFactory"/>
20        </property>
21    </bean>
22
23    <bean id="etherServiceTarget" class="com.ether.EtherServiceImpl">
24        <property name="plateformDAO" ref="appletRefPlateformDAO"/>
25        <property name="parameterDAO" ref="appletRefParameterDAO"/>
26        <property name="valueDAO" ref="apletRefValueDAO"/>
27    </bean>
28    <bean id="etherService" parent="transactionProxy">
29        <property name="target">
30            <ref bean="etherServiceTarget"/>
31        </property>
32        <property name="transactionAttributeSource">
33            <bean class="org.springframework.transaction.annotation.AnnotationTransactionAttributeSource"/>
34        </property>
35    </bean>
36
37    <bean id="etherPlotService" class="com.ether.EtherPlotServiceImpl"></bean>
38
39</beans>
Note: See TracBrowser for help on using the repository browser.