91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

詳解SpringMVC加載配置Properties文件的幾種方式

發布時間:2020-09-21 19:34:46 來源:腳本之家 閱讀:396 作者:webin 欄目:編程語言

最近開發的項目使用了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> 

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

鲁甸县| 巴塘县| 溆浦县| 榆社县| 三亚市| 扎赉特旗| 安溪县| 普兰店市| 巴里| 广宗县| 乌拉特后旗| 丹凤县| 公安县| 康平县| 丰台区| 泰安市| 和平区| 沅江市| 阿勒泰市| 上高县| 正安县| 卓资县| 宁化县| 江川县| 阿瓦提县| 介休市| 连云港市| 诸城市| 湘潭县| 辰溪县| 洪江市| 东至县| 黄浦区| 鄂托克前旗| 永修县| 达拉特旗| 运城市| 乐山市| 金门县| 商洛市| 神农架林区|