Spring通过.properties文件引入属性配置

1.在spring的beans中引入context名字空间

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      <span style="color:#ff0000;"> xmlns:context="http://www.springframework.org/schema/context"</span>
       xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
           <span style="color:#ff0000;">http://www.springframework.org/schema/context
           http://www.springframework.org/schema/context/spring-context-2.5.xsd</span>">
2.原bean配置文件
 <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close" >
       		<property name="driverClassName" value="org.git.mm.mysql.Driver" />
       		<property name="url" value="jdbc:mysql://localhost:3306/spring?useUnicode=true&amp;characterEncoding=UTF-8" />
       		<property name="username" value="root"/>
       		<property name="password" value="11111111"/>
       		<!-- 连接池启动时的初始值   -->
       		<property name="initialSize" value="1" />
       		<!-- 连接池的最大值  -->
       		<property name="maxActive" value="500"/>
       		<!-- 最大空闲值,当经过一个高峰时间后,连接池可以慢慢将已经用不到的连接释放,一直减少到msxIdle为止  -->
		<property name="maxIdle" value="2" />
		<!-- 最小空闲值,当空闲的连接数小于阀值时,连接池就会预申请一些连接,以免洪峰到来时来不及申请  -->
		<property name="minIdle" value="1" />
 </bean>

3.vim test.properties添加属性文件到src目录

driverClassName=org.gjt.mm.mysql.Driver
url=jdbc:mysql://localhost:3306/spring?useUnicode=true&characterEncoding=UTF-8
username=root
password=11111111
initialSize=1
maxActive=500
maxIdle=2
minIdle=1

4.修改原bean配置文件为

 <span style="white-space:pre">	</span><context:property-placeholder location="jdbc.properties"/>
       <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close" >
       		<property name="driverClassName" value="${driverClassName}" />
       		<property name="url" value="${url}" />
       		<property name="username" value="${username}"/>
       		<property name="password" value="${password}"/>
       		<!-- 连接池启动时的初始值   -->
       		<property name="initialSize" value="${initialSize}" />
       		<!-- 连接池的最大值  -->
       		<property name="maxActive" value="${maxActive}"></property>
       		<!-- 最大空闲值,当经过一个高峰时间后,连接池可以慢慢将已经用不到的连接释放,一直减少到msxIdle为止  -->
		<property name="maxIdle" value="${maxIdle}" />
		<!-- 最小空闲值,当空闲的连接数小于阀值时,连接池就会预申请一些连接,以免洪峰到来时来不及申请  -->
		<property name="minIdle" value="${minIdle}" />
       </bean>

说明:通过属性占位符,将属性配置文件引入value的值通过${x}获取,x为配置文件中等号左半部分。(配置文件中的&在读入时会自动被转换为&amp;)。

时间: 2024-10-24 22:31:46

Spring通过.properties文件引入属性配置的相关文章

spring如何引用properties文件里的配置

1.PropertyPlaceholderConfigurer类它是把属性中的定义的变量(var)替代,spring的配置文件中使用${var}的占位符 <beans><bean id="configBean" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">           <property name="loc

Properties文件中文属性读取是乱码问题

项目当中遇到了需要从Properties文件中读取配置属性的需求,本来是存储的中文转码后的属性,但是考虑到后期更改问题就变成java代码中进行转码,代码如下: Properties pros = new Properties();InputStream is=LoginController.class.getClassLoader().getResourceAsStream( "sysConfig.properties");String zdmc="";String

Spring获取properties文件中的属性

1.前言 本文主要是对这两篇blog的整理,感谢作者的分享 Spring使用程序方式读取properties文件 Spring通过@Value注解注入属性的几种方式 2.配置文件 application.properties socket.time.out=1000 3.使用spring代码直接载入配置文件,获取属性信息 代码如下: Resource resource = new ClassPathResource("/application.properties"); Propert

使用Spring读取xml文件中的配置信息

一般写程序时我们都会将一些配置信息写到配置文件中,以便在不修改源码的情况下对程序的某些点进行更改.这里介绍一种Spring读取xml配置文件的方式,其基本思路如下:定义一个java类,其中定义一些静态变量对应我们的配置信息,然后采用注入的方式将变量值初始化为配置值.示例代码如下: 新建一个java类: package java; public class Config { //要配置的值 public static int value = 0; //这里不能写成静态的 public void s

spring读取properties文件

1.方式一 <util:properties id="meta" location="classpath:config/metainfo.properties" /> @Value("#{meta['pubVersion']}")    private String pubVersion 2方式二: <bean id="configPropertiesTest" class="org.springf

spring读取.properties文件

<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">         <property name="location" value="/WEB-INF/jdbc.properties" /> </bean>

IDEA 的 properties 文件的属性字段如何链接到调用的文件

想要达到的效果: ctrl + 鼠标点击:弹出如下所有使用的文件 问题: 有些 IDEA 使用 ctrl + 鼠标点击不能看到使用的文件. 解决办法: ctrl + 鼠标点击,然后选择设置按钮 然后 Scope 处选择 All Places,点击 Find 即可. 原文地址:https://www.cnblogs.com/yuxiaole/p/9650331.html

Spring MVC 中使用properties文件

首先要搭建Spring mvc的环境,然后开始properties文件里的配置: 第一步:在springcontext中注入properties,具体路径自己调整 <bean id="config" class="org.springframework.beans.factory.config.PropertiesFactoryBean"> <property name="locations"> <list>

springboot学习总结(一)外部配置(命令行参数配置、常规属性配置、类型安全的配置之基于properties)

学习的内容主要是汪云飞的<Spring Boot实战> (一)命令行参数配置 springboot项目可以基于jar包运行,打开jar的程序可以通过下面命令行运行: java -jar xxx.jar 可以通过以下命令修改tomcat端口号 java -jar xxx.jar --server.port=9090 (二)常规属性配置 在springboot项目中,我们只需在application.properties定义属性,直接使用@Value注入即可 (1)application.prop