springboot讀取配置檔案屬性

2022-06-30 09:36:13 字數 490 閱讀 9678

比如xiao.

zg.host:127.0.0.1

username :xzg85586537

那麼就建立乙個檔案

@data

@configurationproperties(prefix="xiao.zg")   //配置檔案的字首

public class xiaoproperties {

string host;

string username;

然後建立乙個類呼叫配置檔案的屬性

@component

@enableconfigurationproperties(xiaoproperties .class)

public class xiaoutils {

@autowired

private xiaoproperties  xiaoproperties ;

然後如果要用到配置檔案的資訊就呼叫xiaoproperties .getxx()

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