SpringBoot讀取配置檔案資訊

2022-08-26 23:57:15 字數 876 閱讀 1688

用法如下,我們可以看到直接將environment注入進來,然後就可以使用getproperty方法來獲取配置的值了,

引數是配置的名稱。

我們獲取下之前配置的tomcat埠,http://localhost:8090/config/server.port可以看到輸出的結果正是你配置的值。

@restcontroller

public

class

configcontroller ")

private

string serverport;

object serverport()

}

@configurationproperties 加在類上或方法上,可以和@propertysource組合使用

加在方法上:

@bean("primarydatasource")

@primary

@configurationproperties("primary.datasource")

public datasource buildprimarydatasource()

@configurationproperties會根據配置檔案的資訊呼叫返回物件的set方法

加在類上:

@component

@configurationproperties("sharding.datasource")

public class datasourceconfig

public void seturl(string url)

}@configurationproperties會根據配置檔案的資訊呼叫宣告物件的set方法

自定義配置檔案的讀取方式

Spring Boot讀取配置檔案與配置檔案優先順序

spring boot讀取配置檔案 package com.ivan.config.controller import org.springframework.beans.factory.annotation.autowired import org.springframework.core.env...

5分鐘學會springboot讀取配置檔案

本文是基於hadoop ha基礎搭建下storm集群的搭建過程 之前文章有搭建過程 搭建過程超級簡單如下 2 安裝zookeeper集群 準備三颱機器,分別為weekend01,weekend02,weekend03,並在這三颱機器上安裝zookeeper,我們現在weekend01上安裝,然後zo...

spring boot 配置檔案讀取

如圖所示,可以重新賦值予以覆蓋。mail setting 設定郵箱主機 email.host smtp.163.com email.port 25 設定使用者名稱 email.from xx xx.com 設定密碼 email.frompassword 設定是否需要認證,如果為true,那麼使用者名...