博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
context:property-placeholder作用
阅读量:5786 次
发布时间:2019-06-18

本文共 885 字,大约阅读时间需要 2 分钟。

原文地址:http://blog.sina.com.cn/s/blog_a0de59cf0101dqeb.html

去加载,这个元素的写法如下:

<context:property-placeholder location="classpath:jdbc.properties"/>

如果想要配置多个properties文件

<context:property-placeholder location="classpath:jdbc.properties"/>

<context:property-placeholder location="classpath:jdbc.properties"/>

这种方式是不被允许的,一定会出"Could not resolve placeholder"

解决方案:

(1) Spring 3.0中,可以写:

<context:property-placeholder location="xxx.properties" ignore-unresolvable="true"/>

<context:property-placeholder location="xxx.properties" ignore-unresolvable="true"/>

(2) 但是Spring 2.5中,没有ignore-unresolvable属性,所以就不能使用上面的那种方法去配置,

可以改如下的格式:

<bean id="propertyConfigurer"

class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">

<property name="locations">

<list>

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

</list>

</property>

</bean>

转载于:https://www.cnblogs.com/sharpest/p/7476673.html

你可能感兴趣的文章
MongoDB语句
查看>>
写个自己用的jdbc 简单框架
查看>>
【数据库中间件】分布式组件 - ClusterDB-Client
查看>>
使用js、jquery完成省市二级联动
查看>>
Spark配置&启动脚本分析
查看>>
关于JS !!flag 语法
查看>>
rpm apache2 啟動vhost .htaccess讀取問題
查看>>
git推送tag到远端服务器
查看>>
自动上传文件脚本
查看>>
Linux下启动、停止J2SE程序(脚本)
查看>>
USACO Mother's Milk
查看>>
策略模式
查看>>
Node.js 切近实战(七) 之Excel在线(文件&文件组)
查看>>
浅析ERP软件企业资源的关系与发展
查看>>
bilibili弹幕转ass
查看>>
git安装错误
查看>>
nginx开机启动脚本
查看>>
Oracle——distinct的用法
查看>>
苹果电脑如何读写ntfs格式磁盘
查看>>
【转载】VC遍历文件夹下所有文件和文件夹
查看>>