source: ether_ndacc/trunk/web/WEB-INF/classes/dao-context.xml @ 113

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

Import du projet NDACC _ module web

File size: 691 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<!-- Application context DAO layer -->
5<beans>
6        <bean id="refStationDAO" class="com.ether.dao.station.StationDAOImpl">
7                <property name="sessionFactory">
8                        <ref bean="sessionFactory" />
9                </property>
10        </bean>
11
12        <bean id="refInstrumentDAO" class="com.ether.dao.instrument.InstrumentDAOImpl">
13                <property name="sessionFactory">
14                        <ref bean="sessionFactory" />
15                </property>
16        </bean>
17
18        <bean id="refPlotDAO" class="com.ether.dao.plot.PlotDAOImpl">
19                <property name="sessionFactory">
20                        <ref bean="sessionFactory" />
21                </property>
22        </bean>
23
24</beans>
Note: See TracBrowser for help on using the repository browser.