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.properties</value>
</list>
</property>
</bean>
@Value("#{propertyConfigurer['workFlow.url']}") private String flowUrl;

二、${'propertiesName'}方式

@Value("${material.qrCode.target.url}")
private String qrCodeUrl;
上一篇:【Java基础】Java中的代码块


下一篇:查看一个目录是否已经mount --bind