spring配置文件注解方式引入的两种方式

一、#{beanID['propertiesName']}方式

<bean id="propertyConfigurer"  class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="fileEncoding" value="utf-8" />
        <property name="locations">
            <list>
                <value>classpath:/config/pay-alipay.propertiesvalue>
            list>
        property>
bean>
@Value("#{propertyConfigurer['workFlow.url']}") private String flowUrl;

二、${'propertiesName'}方式

@Value("${material.qrCode.target.url}")
private String qrCodeUrl;

 

转载于:https://www.cnblogs.com/cocoat/p/6628147.html

你可能感兴趣的:(spring配置文件注解方式引入的两种方式)