springBoot讀取配置檔案

2021-08-25 02:26:44 字數 585 閱讀 6640

1.讀核心配置檔案

2.讀自定義配置檔案

建立乙個配置檔案對應的實體類新增如下註解

@configuration

//@propertysource(value = "classpath:mail.properties")

@configurationproperties(prefix = "mail",locations = "classpath:mail.properties")

在spring1.5一下提供了乙個類註解:

@configurationproperties:

常用的兩個屬性是:

locations:指定配置檔案

prefix:指定該配置檔案中的某個屬性群的字首

但是使用spring1.5時,原始碼部分做了修改,去掉了locations屬性,所以另乙個註解就上場啦

@propertysource:

value:這裡指定配置檔案,替代原來@configurationproperties的locations

encoding:指定讀取配置檔案時的編碼

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