首页 > 学院 > 开发设计 > 正文

context:property-placeholder junit配置无效解决方法

2019-11-06 08:20:35
字体:
来源:转载
供稿:网友
<!-- 加载配置文件 -->

<context:PRoperty-placeholder location="classpath:*.properties" />

我认为是启动的时候还没加载这个扫描

改成

<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"><property name="locations"><list><value>classpath:config.properties</value></list></property></bean>

这样的方式就获取到了属性


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表