springmvc中读取配置文件中参数问题 20
在springmvc的controller中,我记得用一种读取配置文件中参数的方式我记得不太清楚了。比如说在properties或xml中定义参数,在controller...
在springmvc 的 controller 中,我记得用一种读取配置文件中参数的方式
我记得不太清楚了。比如说在 properties或xml 中定义参数,在 controller 中 ${参数名} 就可以取到对应的值
这个是怎么做的。
大大们,等你们的回答哦
大家帮看看哦 展开
我记得不太清楚了。比如说在 properties或xml 中定义参数,在 controller 中 ${参数名} 就可以取到对应的值
这个是怎么做的。
大大们,等你们的回答哦
大家帮看看哦 展开
展开全部
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>
<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>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询