XmlConfigPlaceholderTest10.xml 1.28 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:apollo="http://www.ctrip.com/schema/apollo"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.ctrip.com/schema/apollo http://www.ctrip.com/schema/apollo.xsd">
    <apollo:config />

    <bean class="com.ctrip.framework.apollo.spring.XmlConfigPlaceholderAutoUpdateTest.TestAllKindsOfDataTypesBean">
        <property name="intProperty" value="${intProperty}"/>
        <property name="intArrayProperty" value="${intArrayProperty}"/>
        <property name="longProperty" value="${longProperty}"/>
        <property name="shortProperty" value="${shortProperty}"/>
        <property name="floatProperty" value="${floatProperty}"/>
        <property name="doubleProperty" value="${doubleProperty}"/>
        <property name="byteProperty" value="${byteProperty}"/>
        <property name="booleanProperty" value="${booleanProperty}"/>
        <property name="stringProperty" value="${stringProperty}"/>
        <property name="dateProperty" value="#{new java.text.SimpleDateFormat('${dateFormat}').parse('${dateProperty}')}"/>
    </bean>
</beans>