You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.2 KiB
XML
28 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd">
|
|
|
|
<bean id="egov.propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
|
|
<property name="locations">
|
|
<list>
|
|
<value>classpath:/egovframework/egovProps/globals.properties</value>
|
|
</list>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- 실행환경에서 빈이름 참조(EgovAbstractDAO) -->
|
|
<bean id="egov.lobHandler" class="org.springframework.jdbc.support.lob.DefaultLobHandler" lazy-init="true" />
|
|
|
|
<!-- SqlMap setup for iBATIS Database Layer -->
|
|
<bean id="egov.sqlMapClient" class="egovframework.rte.psl.orm.ibatis.SqlMapClientFactoryBean">
|
|
<property name="configLocations">
|
|
<list>
|
|
<value>classpath:/egovframework/sqlmap/config/${Globals.DbType}/*.xml</value>
|
|
</list>
|
|
</property>
|
|
<property name="dataSource" ref="egov.dataSource"/>
|
|
<property name="lobHandler" ref="egov.lobHandler"/>
|
|
</bean>
|
|
|
|
</beans>
|