smartGeoinfoOriginal/target/classes/egovframework/spring/com/context-properties.xml

20 lines
1.0 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-4.0.xsd">
<!-- 프로퍼티 정보 설정 -->
<bean name="propertiesService" class="egovframework.rte.fdl.property.impl.EgovPropertyServiceImpl" destroy-method="destroy">
<property name="properties">
<map>
<entry key="pageUnit" value="10"/>
<entry key="pageSize" value="10"/>
<entry key="Globals.File.MaxSize" value="${Globals.File.MaxSize}"/>
<entry key="Globals.File.StoredPath" value="${Globals.File.StoredPath}"/>
<entry key="Globals.File.AllowedExt" value="${Globals.File.AllowedExt}"/>
<entry key="Globals.Security.InternalIP" value="${Globals.Security.InternalIP}"/>
<entry key="Globals.File.PyPath" value="${Globals.File.PyPath}"/>
</map>
</property>
</bean>
</beans>