springboot 讀取配置檔案

2022-06-21 19:24:11 字數 787 閱讀 7837

1)environment

可以通過 environment 的 getproperty 方法來獲取想要的配置資訊,**如下所示。

@restcontroller

public

class

hellocontroller

}

2)@value

可以注入具體的配置資訊,**如下所示。

@restcontroller

public

class

hellocontroller ")

private

string port;

public

string hello()

}

3)自定義配置類

prefix 定義配置的字首,**如下所示。

@configurationproperties(prefix = "net.biancheng")

@component

public

class

myconfig

public

void

setname(string name)

}

讀取配置的方法**如下所示。

@restcontroller

public

class

hellocontroller

}

net.biancheng.name=zhangsan

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,那麼使用者名...