Mule ESB:Context Property Placeholder

后端 未结 7 1547
暖寄归人
暖寄归人 2021-02-20 06:48

I have a question regarding Mule\'s context property placeholder, I have two files set up like this:



        
相关标签:
7条回答
  • 2021-02-20 07:33

    By Tim Hennekey You can use this example for MULE with Spring:

        <spring:bean id="property-placeholderInstance" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" name="Bean">
            <spring:property name="locations">
                <spring:list>
                    <spring:value>file:${mule.home}/conf/PropertyFile1.properties</spring:value>
                    <spring:value>file:${mule.home}/conf/PropertyFile2.properties</spring:value>
                </spring:list>
            </spring:property>
        </spring:bean>
    
    0 讨论(0)
提交回复
热议问题