配置在.properties文件中的常量,在xml文件中使用

前端之家收集整理的这篇文章主要介绍了配置在.properties文件中的常量,在xml文件中使用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
首先你先在.properties文件中以键值对的形式写好之后,在spring配置文件先将这个资源文件初始化成bean,然后再在XML中以${……}的形式取出里边的值。 在spring中的配置是: <!-- 配置的资源文件 --> <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfi gurer"> <property name="locations"> <list> <value>classpath:/system.properties</value> </list> </property> </bean> 在properties文件中书写格式: informationSerHessian.serverName = 127.0.0.1 在其他的xml中使用方式 ${informationSerHessian.serverName}取出里边的值 原文链接:https://www.f2er.com/xml/296824.html

猜你在找的XML相关文章