Spring单元测试加载properties文件

来源:互联网 发布:vue.js获取json数据 编辑:程序博客网 时间:2024/05/02 01:10

<!-- 使用注解注入properties中的值 -->

<beanid="setting"class="org.springframework.beans.factory.config.PropertiesFactoryBean">

<propertyname="locations">

<list>

<value>classpath:config.properties</value>

</list>

</property>

<!-- 设置编码格式 -->

<propertyname="fileEncoding"value="UTF-8"></property>

</bean>

0 0