source: EDIS/trunk/java/tracking-server-bigboard/src/main/resources/applicationContext-dao.xml@ 1227

Last change on this file since 1227 was 1227, checked in by George Lilly, 13 years ago

initial load of EDIS 1.0

File size: 895 bytes
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
4 <bean id="bigBoardDao" class="gov.va.med.edp.dao.rpc.VistaLinkBigBoardDao"/>
5 <bean id="serverPackageVersionDao" class="gov.va.med.edp.dao.rpc.VistaLinkServerPackageVersionDao"/>
6 <bean id="siteCodeDao" class="gov.va.med.edp.dao.jdbc.JdbcSiteCodeLookUpDao">
7 <property name="dataSource" ref="dataSource"/>
8 </bean>
9
10 <bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean">
11 <property name="jndiName"><value>jdbc/gov.va.med.term.access.Database</value></property>
12 <property name="resourceRef"><value>false</value></property>
13 </bean>
14</beans>
Note: See TracBrowser for help on using the repository browser.