source: tapas/persistence/implementation/dao-context.xml @ 376

Last change on this file since 376 was 376, checked in by rboipsl, 12 years ago

Creation projet tapas

File size: 557 bytes
Line 
1<?com.medias.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="refPlateformDAO" class="com.ether.dao.PlateformDAOImpl">
7                <property name="sessionFactory">
8                        <ref bean="sessionFactory" />
9                </property>
10        </bean>
11
12    <bean id="refParameterDAO" class="com.ether.dao.ParameterDAOImpl">
13        <property name="sessionFactory">
14            <ref bean="sessionFactory" />
15        </property>
16    </bean>
17
18</beans>
Note: See TracBrowser for help on using the repository browser.