<?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
    					http://www.springframework.org/schema/util 
						http://www.springframework.org/schema/util/spring-util-3.0.xsd"
    xmlns:util="http://www.springframework.org/schema/util" >

    <!-- 프로퍼티 정보 설정 -->
    <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="posblAtchFileSize" value="5242880"/>
                <entry key="posblResveThumbAtchFileNum" value="1"/>
                <entry key="posblResveImgAtchFileNum" value="3"/>
                <entry key="posblResvePortpolioAtchFileNum" value="3"/>
               <!--  <entry key="Globals.fileStorePath" value="/user/file/sht/"/>
                <entry key="Globals.addedOptions" value="false"/> -->
                <entry key="Globals.fileStorePath" value="/usr/local/tomcat/file/sht/"/>
                <entry key="Globals.resveFileStorePath" value="/usr/local/tomcat/file/resve/"/>
                <entry key="Globals.addedOptions" value="false"/>
            </map>
        </property>
    </bean>
    <util:properties id="globalSettings" location="classpath:/egovframework/egovProps/globals_#{systemProperties['spring.profiles.active']}.properties" />
</beans>    
