欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

詳解Spring Boot讀取配置文件與配置文件優(yōu)先級(jí)

 更新時(shí)間:2018年08月17日 14:37:40   作者:良辰美景TT  
這篇文章主要介紹了詳解Spring Boot讀取配置文件與配置文件優(yōu)先級(jí),小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧

Spring Boot讀取配置文件

1)通過(guò)注入ApplicationContext 或者 Environment對(duì)象來(lái)讀取配置文件里的配置信息。

package com.ivan.config.controller;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.context.ApplicationContext;

import org.springframework.core.env.Environment;

import org.springframework.web.bind.annotation.RequestMapping;

import org.springframework.web.bind.annotation.RequestMethod;

import org.springframework.web.bind.annotation.RestController;

@RestController

public class ConfigController {
  @Autowired

  ApplicationContext context;

  @Autowired

  Environment environment;

  @RequestMapping(value="/config", method={RequestMethod.GET})

  public String getConfigContent(){       

    String name = context.getEnvironment().getProperty("db.user.name");

    return name;

  }

  @RequestMapping(value="/configEnv", method={RequestMethod.GET})

  public String getConfigEnvironment(){

    String name = environment.getProperty("db.user.name");

    return name;

  }
}

2)通過(guò)@ConfigurationProperties配合@PropertySource讀取配置文件里的配置信息。

1:通過(guò)@PropertySource指定當(dāng)前類里屬性的配置文件地址,ConfigurationProperties可以指定配置的前綴,@Configuration用于定義一個(gè)配置類:

package com.ivan.config.entity;
import org.springframework.boot.context.properties.ConfigurationProperties;

import org.springframework.context.annotation.Configuration;

import org.springframework.context.annotation.PropertySource;

@Configuration

@PropertySource("classpath:config/druid.properties")

@ConfigurationProperties(prefix = "druid")

public class DruidConfig {

  private int  initialSize;

  private int  minIdle;

  private int  maxActive;

  private int  maxWait;

  private String validationQuery;

  private boolean testWhileIdle;

  private boolean testOnBorrow;

  private boolean testOnReturn;

  public int getInitialSize() {

    return initialSize;

  }

  public void setInitialSize(int initialSize) {

    this.initialSize = initialSize;

  }

  public int getMinIdle() {

    return minIdle;

  }

  public void setMinIdle(int minIdle) {

    this.minIdle = minIdle;

  }

  public int getMaxActive() {

    return maxActive;

  }

  public void setMaxActive(int maxActive) {

    this.maxActive = maxActive;

  }

  public int getMaxWait() {

    return maxWait;

  }

  public void setMaxWait(int maxWait) {

    this.maxWait = maxWait;

  }

  public String getValidationQuery() {

    return validationQuery;

  }

  public void setValidationQuery(String validationQuery) {

    this.validationQuery = validationQuery;

  }

  public boolean isTestWhileIdle() {

    return testWhileIdle;

  }

  public void setTestWhileIdle(boolean testWhileIdle) {

    this.testWhileIdle = testWhileIdle;

  }

  public boolean isTestOnBorrow() {

    return testOnBorrow;

  }

  public void setTestOnBorrow(boolean testOnBorrow) {

    this.testOnBorrow = testOnBorrow;

  }

  public boolean isTestOnReturn() {

    return testOnReturn;

  }

  public void setTestOnReturn(boolean testOnReturn) {

    this.testOnReturn = testOnReturn;

  }

  @Override

  public String toString() {

    return "DruidConfig [initialSize=" + initialSize + ", minIdle=" + minIdle + ", maxActive=" + maxActive + ", maxWait=" + maxWait + ", validationQuery=" + validationQuery + ", testWhileIdle=" + testWhileIdle + ", testOnBorrow=" + testOnBorrow + ", testOnReturn=" + testOnReturn + "]";

  }
}

2:對(duì)應(yīng)的配置文件:

druid.initialSize=5
druid.minIdle=5
druid.maxActive=20
druid.maxWait=60000
druid.validationQuery=select 'x'
druid.testWhileIdle=true 
druid.testOnBorrow=true 
druid.testOnReturn=true

3:在需要用到的類通過(guò)@Autowired注入

package com.ivan.config.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import com.ivan.config.entity.DruidConfig;
@RestController
public class DruidConfigController {
  @Autowired
  public DruidConfig druidConfig;

  @RequestMapping(value="/druidConfig", method={RequestMethod.GET})
  public String getDruidConfig(){
    return druidConfig.toString();
  }
}

3)通過(guò)@Value注解

1:需要得到配置屬性的類如下,可以在任何需要得到配置的地方用@Value注解

package com.ivan.config.entity;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;
@Configuration

public class ValueTest {
  @Value("${db.user.name}")
  private String username;
  public String getUsername() {
    return username;
  }
  public void setUsername(String username) {
    this.username = username;
  }
}

2:測(cè)試Controller類通過(guò)@Autowired注入實(shí)體類

package com.ivan.config.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import com.ivan.config.entity.ValueTest;
@RestController
public class ValueController {
  @Autowired
  private ValueTest value;

  @RequestMapping(value="/configValue", method={RequestMethod.GET})
  public String getConfig(){
    return value.getUsername();
  }
}

Spring boot 配置文件優(yōu)先級(jí):

1:命令行參數(shù)。(以--開(kāi)頭的參數(shù),比如可以設(shè)置:--server.port對(duì)同一套代碼設(shè)置不同的參數(shù))
2: 通過(guò) System.getProperties() 獲取的 Java 系統(tǒng)參數(shù)。
3:操作系統(tǒng)環(huán)境變量(這解釋了為什么你通過(guò)application.properties設(shè)置的user.name取的是系統(tǒng)的用戶名了)
4:從 java:comp/env 得到的 JNDI 屬性。
5: 應(yīng)用 Jar 文件之外的屬性文件(系統(tǒng)的application.properties文件)
6:應(yīng)用 Jar 文件內(nèi)部的屬性文件。
7: 在應(yīng)用配置 Java 類(包含“@Configuration”注解的 Java 類)中通過(guò)“@PropertySource”注解聲明的屬性文件。
8: 通過(guò)“SpringApplication.setDefaultProperties”聲明的默認(rèn)屬性。

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • SpringBoot項(xiàng)目導(dǎo)入aliyun oss starter依賴后啟動(dòng)報(bào)錯(cuò)問(wèn)題

    SpringBoot項(xiàng)目導(dǎo)入aliyun oss starter依賴后啟動(dòng)報(bào)錯(cuò)問(wèn)題

    這篇文章主要介紹了SpringBoot項(xiàng)目導(dǎo)入aliyun oss starter依賴后啟動(dòng)報(bào)錯(cuò)問(wèn)題及解決方案,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2024-01-01
  • Spring?Service功能作用詳細(xì)講解

    Spring?Service功能作用詳細(xì)講解

    service層測(cè)試較簡(jiǎn)單,目前大多數(shù)測(cè)試主要是針對(duì)public方法進(jìn)行的。依據(jù)測(cè)試方法劃分,可以分為兩種:基于mock的隔離測(cè)試和基于dbunit的普通測(cè)試
    2022-12-12
  • Java高級(jí)用法中的JNA類型映射注意細(xì)節(jié)及使用問(wèn)題

    Java高級(jí)用法中的JNA類型映射注意細(xì)節(jié)及使用問(wèn)題

    本文介紹了在使用JNA方法映射中應(yīng)該注意的一些細(xì)節(jié)和具體的使用問(wèn)題,對(duì)java??JNA類型映射注意細(xì)節(jié)感興趣的朋友一起看看吧
    2022-04-04
  • Java實(shí)現(xiàn)bmp和jpeg圖片格式互轉(zhuǎn)

    Java實(shí)現(xiàn)bmp和jpeg圖片格式互轉(zhuǎn)

    本文主要介紹了Java實(shí)現(xiàn)bmp和jpeg圖片格式互轉(zhuǎn),文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2023-04-04
  • 寫(xiě)了兩年代碼之后再來(lái)談一談Spring中的Bean

    寫(xiě)了兩年代碼之后再來(lái)談一談Spring中的Bean

    這篇文章主要介紹了寫(xiě)了兩年代碼之后再來(lái)看看Spring中的Bean,這里列出四種常用的添加Bean的方式,介紹最基本的@Bean注解,@Bean注解聲明這個(gè)類是一個(gè)Bean,需要的朋友可以參考下
    2021-10-10
  • java實(shí)現(xiàn)科學(xué)計(jì)算器的全過(guò)程與代碼

    java實(shí)現(xiàn)科學(xué)計(jì)算器的全過(guò)程與代碼

    最近編寫(xiě)了一個(gè)功能較全面的科學(xué)計(jì)算器,該計(jì)算器不僅能進(jìn)行加、減、乘、除等混合運(yùn)算,而且能計(jì)算sin、cos、tan、log等函數(shù)的值,還要具有清零、退格、求倒數(shù)、求相反數(shù)等功能,這篇文章主要給大家介紹了關(guān)于java實(shí)現(xiàn)科學(xué)計(jì)算器的相關(guān)資料,需要的朋友可以參考下
    2022-06-06
  • 新版POI獲取日期類型cell值過(guò)程圖解

    新版POI獲取日期類型cell值過(guò)程圖解

    這篇文章主要介紹了新版POI獲取日期類型cell值過(guò)程圖解,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
    2020-10-10
  • Java設(shè)計(jì)模式之狀態(tài)模式(State模式)介紹

    Java設(shè)計(jì)模式之狀態(tài)模式(State模式)介紹

    這篇文章主要介紹了Java設(shè)計(jì)模式之狀態(tài)模式(State模式)介紹,本文講解了何時(shí)使用狀態(tài)模式、如何使用狀態(tài)模式等內(nèi)容,需要的朋友可以參考下
    2015-03-03
  • mybatis多個(gè)接口參數(shù)的注解使用方式(@Param)

    mybatis多個(gè)接口參數(shù)的注解使用方式(@Param)

    這篇文章主要介紹了mybatis多個(gè)接口參數(shù)的注解使用方式(@Param),小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧
    2018-10-10
  • Java Scala的隱式轉(zhuǎn)換詳解

    Java Scala的隱式轉(zhuǎn)換詳解

    隱式轉(zhuǎn)換是在Scala編譯器進(jìn)行類型匹配時(shí),如果找不到合適的類型,那么隱式轉(zhuǎn)換會(huì)讓編譯器在作用范圍內(nèi)自動(dòng)推導(dǎo)出來(lái)合適的類型。本文通過(guò)代碼示例介紹了Scala的隱式轉(zhuǎn)換,感興趣的小伙伴可以參考閱讀
    2023-04-04

最新評(píng)論