Class GluePropertySourcesPlaceholderConfigurer

All Implemented Interfaces:
Aware, BeanFactoryAware, BeanNameAware, BeanFactoryPostProcessor, EnvironmentAware, Ordered, PriorityOrdered

public class GluePropertySourcesPlaceholderConfigurer extends PropertySourcesPlaceholderConfigurer
GluePropertySourcesPlaceholderConfigurer. GluePropertySourcesPlaceholderConfigurer 는 PropertySourcesPlaceholderConfigurer 을 확장한 클래스입니다( Spring 5.2.0 ).
 Bean Property

 - keyFile : (선택) keyFile 이 존재할 경우, 암호화된 property 는 복호화함.


 예제
 
 사용 예# 1

     <bean class="com.poscoict.glueframework.bean.GluePropertySourcesPlaceholderConfigurer">
     	   <property name="keyFile" value="file:${CONFIG_PATH}/glue.cipher"></property>
         <property name="locations">
             <list>
                 <value>file:${CONFIG_PATH}/glue.properties</value>
             </list>
         </property>
     </bean>