溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

SpringBoot獲取配置文件內(nèi)容的方式有哪些

發(fā)布時(shí)間:2023-02-22 10:58:33 來源:億速云 閱讀:113 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要介紹“SpringBoot獲取配置文件內(nèi)容的方式有哪些”的相關(guān)知識,小編通過實(shí)際案例向大家展示操作過程,操作方法簡單快捷,實(shí)用性強(qiáng),希望這篇“SpringBoot獲取配置文件內(nèi)容的方式有哪些”文章能幫助大家解決問題。

前言

現(xiàn)有配置文件如下,如何獲取到配置文件的值呢?

file:
  windows: D:\file
  linux: /usr/local/file

方法1:@ConfigurationProperties

首先,可以標(biāo)注到實(shí)體類上。

@Data
@Component
@ConfigurationProperties(prefix = "file")
public class FileProperties {

    private String windows;
    private String linux;
}

標(biāo)注在配置類上的方法上,同樣是從配置文件中取值賦值到返回值的屬性中。使用如下:

@Bean
@ConfigurationProperties(prefix = "userinfo")
public FileProperties fileProperties() {
    return new FileProperties();
}

使用方法:

@Service
public class Test {     
	
    @Autowired
    private FileProperties fileProperties;
    
    @Override
    public void test() {
         System.out.println(fileProperties.getLinux());
    }
}

總結(jié)

@ConfigurationProperties注解能夠很輕松的從配置文件中取值,優(yōu)點(diǎn)如下:

  • 支持批量的注入屬性,只需要指定一個(gè)前綴 prefix

  • 支持復(fù)雜的數(shù)據(jù)類型,比如 List 、 Map

  • 對屬性名匹配的要求較低,比如user-name,user_name,userName,USER_NAME 都可以取值

  • 支持JAVA的JSR303數(shù)據(jù)校驗(yàn)

方法2:@Value

@Value("${file.windows}")
private String windows;

@Value("${file.linux}")
private String linux;

如何從自定義配置文件中取值?

Spring Boot在啟動的時(shí)候會自動加載 application.xxx 和 bootsrap.xxx ,但是為了區(qū)分,有時(shí)候需要自 定義一個(gè)配置文件,那么如何從自定義的配置文件中取值呢?

只需要在啟動類上標(biāo)注 @PropertySource 并指定你自定義的配置文件即可完成。

@SpringBootApplication
@PropertySource(value = {"classpath:custom.properties"})
public class DemoApplication{ }

value屬性是一個(gè)數(shù)組,可以指定多個(gè)配置文件同時(shí)引入。@PropertySource默認(rèn)加載xxx.properties類型的配置文件,不能加載YML格式的配置文件。

如何加載自定義YML格式的配置文件?

@PropertySource注解有一個(gè)屬性 factory ,默認(rèn)值是PropertySourceFactory.class,這個(gè)就是用來加 載properties格式的配置文件,我們可以自定義一個(gè)用來加載 YML 格式的配置文件,如下:

import org.springframework.beans.factory.config.YamlPropertiesFactoryBean;
import org.springframework.core.env.PropertiesPropertySource;
import org.springframework.core.env.PropertySource;
import org.springframework.core.io.support.DefaultPropertySourceFactory;
import org.springframework.core.io.support.EncodedResource;

import java.io.IOException;
import java.util.Properties;

public class YmlConfigFactory extends DefaultPropertySourceFactory {
    @Override
    public PropertySource<?> createPropertySource(String name, EncodedResource resource) throws
            IOException {
        String sourceName = name != null ? name : resource.getResource().getFilename();
        if (!resource.getResource().exists()) {
            return new PropertiesPropertySource(sourceName, new Properties());
        } else if (sourceName.endsWith(".yml") || sourceName.endsWith(".yaml")) {
            Properties propertiesFromYaml = loadYml(resource);
            return new PropertiesPropertySource(sourceName, propertiesFromYaml);
        } else {
            return super.createPropertySource(name, resource);
        }
    }

    private Properties loadYml(EncodedResource resource) throws IOException {
        YamlPropertiesFactoryBean factory = new YamlPropertiesFactoryBean();
        factory.setResources(resource.getResource());
        factory.afterPropertiesSet();
        return factory.getObject();
    }
}

此時(shí)只需要將 factory 屬性指定為 YmlConfigFactory 即可,如下:

@SpringBootApplication
@PropertySource(value = {"classpath:custom.yml"}, factory = YmlConfigFactory.class)
public class DemoApplication { }

@PropertySource 指定加載自定義的配置文件,默認(rèn)只能加載 properties 格式,但是可以指定 factory 屬 性來加載 YML 格式的配置文件。

關(guān)于“SpringBoot獲取配置文件內(nèi)容的方式有哪些”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識,可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會為大家更新不同的知識點(diǎn)。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI