| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
9年前发布

spring 读取properties的两种方法

一:直接使用context命名空间

如:


<beans xmlns="http://www.springframework.org/schema/beans"   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    xmlns:context="http://www.springframework.org/schema/context"   xmlns:websocket="http://www.springframework.org/schema/websocket"   xsi:schemaLocation="http://www.springframework.org/schema/beans       http://www.springframework.org/schema/beans/spring-beans.xsd      http://www.springframework.org/schema/websocket         http://www.springframework.org/schema/websocket/spring-websocket.xsd      http://www.springframework.org/schema/context       http://www.springframework.org/schema/context/spring-context.xsd">




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

二:在配置文件中配置PropertyPlaceholderConfigurer



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

然后在需要的地方直接以下方式引用



<property name="url" value="${jdbc.url}"/>


 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1436322126817.html
Spring JEE框架