springmvc中读取配置文件中参数问题 20

在springmvc的controller中,我记得用一种读取配置文件中参数的方式我记得不太清楚了。比如说在properties或xml中定义参数,在controller... 在springmvc 的 controller 中,我记得用一种读取配置文件中参数的方式
我记得不太清楚了。比如说在 properties或xml 中定义参数,在 controller 中 ${参数名} 就可以取到对应的值
这个是怎么做的。
大大们,等你们的回答哦
大家帮看看哦
展开
 我来答
vVxiamiVv
2014-05-09
知道答主
回答量:5
采纳率:0%
帮助的人:6889
展开全部
Spring的框架中,org.springframework.beans.factory.config.PropertyPlaceholderConfigurer类可以将.properties(key/value形式)文件中一些动态设定的值(value),在XML中替换为占位该键($key$)的值,.properties文件可以根据客户需求,自定义一些相关的参数,这样的设计可提供程序的灵活性。

<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" lazy-init="false">
<property name="locations">
<list>
<value>classpath:conf/probiz.properties</value>
<value>classpath:conf/mail_config.properties</value>
</list>
</property>
<property name="ignoreResourceNotFound" value="true" />
<property name="ignoreUnresolvablePlaceholders" value="true" />
</bean>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式