欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解SpringMVC加载配置Properties文件的几种方式

程序员文章站 2024-03-05 15:31:01
最近开发的项目使用了springmvc的框架,用下来感觉springmvc的代码实现的非常优雅,功能也非常强大, 网上介绍controller参数绑定、url映射的文章都...

最近开发的项目使用了springmvc的框架,用下来感觉springmvc的代码实现的非常优雅,功能也非常强大,

网上介绍controller参数绑定、url映射的文章都很多了,写这篇博客主要总结一下springmvc加载配置properties文件的几种方式

1.通过context:property-placeholde实现配置文件加载

1.1、在spring.xml中加入context相关引用

<?xml version="1.0" encoding="utf-8"?> 
<beans xmlns="http://www.springframework.org/schema/beans" 
 xmlns:context="http://www.springframework.org/schema/context" 
 xsi:schemalocation="http://www.springframework.org/schema/beans 
   http://www.springframework.org/schema/beans/spring-beans-4.0.xsd 
   http://www.springframework.org/schema/context 
   http://www.springframework.org/schema/context/spring-context.xsd"> 

 1.2、引入jdbc配置文件        

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

1.3、jdbc.properties的配置如下

jdbc_driverclassname=com.mysql.jdbc.driver 
jdbc_url=jdbc:mysql://localhost/testdb?useunicode=true&characterencoding=utf8 
jdbc_username=root 
jdbc_password=123456 

1.4、在spring-mybatis.xml中引用jdbc中的配置

<bean id="datasource" class="com.alibaba.druid.pool.druiddatasource" init-method="init" 
  destroy-method="close" > 
  <property name="driverclassname"> 
   <value>${jdbc_driverclassname}</value> 
  </property> 
  <property name="url"> 
   <value>${jdbc_url}</value> 
  </property> 
  <property name="username"> 
   <value>${jdbc_username}</value> 
  </property> 
  <property name="password"> 
   <value>${jdbc_password}</value> 
  </property> 
  <!-- 连接池最大使用连接数 --> 
  <property name="maxactive"> 
   <value>20</value> 
  </property> 
  <!-- 初始化连接大小 --> 
  <property name="initialsize"> 
   <value>1</value> 
  </property> 
  <!-- 获取连接最大等待时间 --> 
  <property name="maxwait"> 
   <value>60000</value> 
  </property> 
  <!-- 连接池最大空闲 --> 
  <property name="maxidle"> 
   <value>20</value> 
  </property> 
  <!-- 连接池最小空闲 --> 
  <property name="minidle"> 
   <value>3</value> 
  </property> 
  <!-- 自动清除无用连接 --> 
  <property name="removeabandoned"> 
   <value>true</value> 
  </property> 
  <!-- 清除无用连接的等待时间 --> 
  <property name="removeabandonedtimeout"> 
   <value>180</value> 
  </property> 
  <!-- 连接属性 --> 
  <property name="connectionproperties"> 
   <value>clientencoding=utf-8</value> 
  </property> 
 </bean> 

1.5、在java类中引用jdbc.properties中的配置

import org.springframework.beans.factory.annotation.value; 
import org.springframework.context.annotation.configuration; 
@configuration  
public class jdbcconfig{   
   
  @value("${jdbc_url}") 
  public string jdbcurl; //这里变量不能定义成static 
   
  @value("${jdbc_username}") 
  public string username;  
   
  @value("${jdbc_password}") 
  public string password;  
    
} 

1.6、在controller中调用

@requestmapping("/service/**") 
@controller 
public class jdbccontroller{ 
  
     @autowired 
   private jdbcconfig config; //引用统一的参数配置类 
 
     @value("${jdbc_url}") 
     private string jdbcurl; //直接在controller引用 
     @requestmapping(value={"/test"})  
    public modelmap test(modelmap modelmap) {  
        modelmap.put("jdbcurl", config.jdbcurl); 
        return modelmap;  
     } 
     @requestmapping(value={"/test2"}) 
   public modelmap test2(modelmap modelmap) {  
      modelmap.put("jdbcurl", this.jdbcurl); 
      return modelmap; 
   }  
} 

1.7、测试

在ie中输入http://localhost:8080/testweb/service/test 或http://localhost:8080/testweb/service/test2 

返回如下结果:

{  
  jdbcurl:"jdbc:mysql://localhost/testdb?useunicode=true&characterencoding=utf8" 
} 

注:通过context:property-placeholde加载多个配置文件

 只需在第1.2步中将多个配置文件以逗号分隔即可

复制代码 代码如下:

<context:property-placeholder location="classpath:jdbc.properties,classpath:xxx.properties"/> 

2、通过util:properties实现配置文件加载

2.1、在spring.xml中加入util相关引用

<?xml version="1.0" encoding="utf-8"?> 
<beans xmlns="http://www.springframework.org/schema/beans" 
 xmlns:context="http://www.springframework.org/schema/context" 
 xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" 
 xmlns:util="http://www.springframework.org/schema/util" 
 xsi:schemalocation="http://www.springframework.org/schema/beans 
   http://www.springframework.org/schema/beans/spring-beans-4.0.xsd 
   http://www.springframework.org/schema/context 
   http://www.springframework.org/schema/context/spring-context.xsd 
   http://www.springframework.org/schema/util 
   http://www.springframework.org/schema/util/spring-util-4.0.xsd"> 

2.2、 引入config配置文件 

<util:properties id="settings" location="classpath:config.properties"/> 

2.3、config.properties的配置如下

gnss.server.url=http://127.0.0.1:8080/gnss/services/data-world/rest 

2.4、在java类中引用config中的配置  

import org.springframework.beans.factory.annotation.value; 
import org.springframework.stereotype.component; 
 
@component 
public class config {  
   @value("#{settings['gnss.server.url']}")  
   public string gnss_server_url;  
  
} 

2.5、在controller中调用

@requestmapping("/service2/**") 
@controller 
public class configcontroller{ 
  
     @autowired 
   private config config; //引用统一的参数配置类 
 
     @requestmapping(value={"/test"}) 
   public modelmap test(modelmap modelmap) {  
    modelmap.put("gnss.service.url",config.gnss_server_url); 
      return modelmap; 
   }  
} 

2.6、测试

在ie中输入http://localhost:8080/testweb/service2/test

返回如下结果:

{ 
  "gnss.service.url":"http://127.0.0.1:8080/gnss/services/data-world/rest" 
} 

3.直接在java类中通过注解实现配置文件加载

3.1、在java类中引入配置文件

import org.springframework.beans.factory.annotation.value; 
import org.springframework.context.annotation.configuration; 
import org.springframework.context.annotation.propertysource; 
 
@configuration 
@propertysource(value="classpath:config.properties")  
public class config {  
  
@value("${gnss.server.url}")  
public string gnss_server_url; 
 
@value("${gnss.server.url}")  
public string jdbcurl;  
 
} 
3.2、在controller中调用
@requestmapping("/service2/**") 
@controller 
public class configcontroller{ 
  
     @autowired 
   private config config; //引用统一的参数配置类 
 
     @requestmapping(value={"/test"}) 
   public modelmap test(modelmap modelmap) {  
    modelmap.put("gnss.service.url", config.gnss_server_url); 
      return modelmap; 
   }  
}

3.3、测试

在ie中输入http://localhost:8080/testweb/service2/test

返回如下结果:

{ 
  "gnss.service.url":"http://127.0.0.1:8080/gnss/services/data-world/rest" 
 } 

最后附上spring.xml的完整配置:

<?xml version="1.0" encoding="utf-8"?> 
<beans xmlns="http://www.springframework.org/schema/beans" 
 xmlns:context="http://www.springframework.org/schema/context" 
 xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" 
 xmlns:util="http://www.springframework.org/schema/util" 
 xsi:schemalocation="http://www.springframework.org/schema/beans 
   http://www.springframework.org/schema/beans/spring-beans-4.0.xsd 
   http://www.springframework.org/schema/context 
   http://www.springframework.org/schema/context/spring-context.xsd 
   http://www.springframework.org/schema/util 
   http://www.springframework.org/schema/util/spring-util-4.0.xsd"> 
 
  <!-- 引入jdbc配置文件 --> 
  <context:property-placeholder location="classpath:jdbc.properties"/> 
 
   <!-- 引入多配置文件 --> 
    <context:property-placeholder location="classpath:jdbc.properties,classpath:xxx.properties"/> 
   <!-- 通过util引入config配置文件 --> 
   <!-- <util:properties id="settings" location="classpath:config.properties" /> --> 
   <!-- 扫描文件(自动将servicec层注入) -->  
   <context:component-scan base-package="修改成你的config类所在的package"/></beans> 

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。