<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" 
		xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
		xmlns:util="http://www.springframework.org/schema/util"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.3.xsd
						http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.3.xsd">
	   
	<util:properties id="conf" location="classpath:i2c/properties/conf${server-type}.xml" />
	   
	<!-- SqlMap setup for iBATIS Database Layer -->
	<bean id="egov.sqlMapClient" class="egovframework.rte.psl.orm.ibatis.SqlMapClientFactoryBean">
		<property name="dataSource" ref="dataSource"/>		
		
		<property name="configLocations">
			<list>
				<value>classpath:/egovframework/sqlmap/config/${db.type}/*.xml</value>
			</list>
		</property>		
	</bean>
	
</beans>	
