中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

Spring Boot讀取配置文件的方式有哪些

發布時間:2021-12-17 13:44:59 來源:億速云 閱讀:165 作者:iii 欄目:開發技術

這篇文章主要介紹“Spring Boot讀取配置文件的方式有哪些”,在日常操作中,相信很多人在Spring Boot讀取配置文件的方式有哪些問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Spring Boot讀取配置文件的方式有哪些”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

Spring Boot獲取文件總的來說有三種方式,分別是@Value注解,@ConfigurationProperties注解和Environment接口。這三種注解可以配合著@PropertySource來使用,@PropertySource主要是用來指定具體的配置文件。

@PropertySource解析

@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Repeatable(PropertySources.class)
public @interface PropertySource {
   
String name() default "";

String[] value();

boolean ignoreResourceNotFound() default false;

String encoding() default "";

Class<? extends PropertySourceFactory> factory() default PropertySourceFactory.class;
}
  • value():指定配置文件

  • encoding():指定編碼,因為properties文件的編碼默認是ios8859-1,讀取出來是亂碼

  • factory():自定義解析文件類型,因為該注解默認只會加載properties文件,如果想要指定yml等其他格式的文件需要自定義實現。

Spring Boot讀取配置文件的方式有哪些

一、@Value注解讀取文件

新建兩個配置文件config.properties和configs.properties,分別寫入如下內容:

zhbin.config.web-configs.name=Java旅途
zhbin.config.web-configs.age=22
zhbin.config.web-configs.name=Java旅途
zhbin.config.web-configs.age=18

新增一個類用來讀取配置文件

@Configuration
@PropertySource(value = {"classpath:config.properties"},encoding="gbk")
public class GetProperties {

   @Value("${zhbin.config.web-configs.name}")
   private String name;
   @Value("${zhbin.config.web-configs.age}")
   private String age;

   public String getConfig() {
       return name+"-----"+age;
   }
}

如果想要讀取yml文件,則我們需要重寫DefaultPropertySourceFactory,讓其加載yml文件,然后在注解

@PropertySource上自定factory。代碼如下:

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();
   }
}
@PropertySource(value = {"classpath:config.properties"},encoding="gbk",factory = YmlConfigFactory.class)

二、Environment讀取文件

配置文件我們繼續用上面的兩個,定義一個類去讀取配置文件

@Configuration
@PropertySource(value = {"classpath:config.properties"},encoding="gbk")
public class GetProperties {

   @Autowired
   Environment environment;

   public String getEnvConfig(){
       String name = environment.getProperty("zhbin.config.web-configs.name");
       String age = environment.getProperty("zhbin.config.web-configs.age");
       return name+"-----"+age;
   }
}

三、@ConfigurationProperties讀取配置文件

@ConfigurationProperties可以將配置文件直接映射成一個實體類,然后我們可以直接操作實體類來獲取配置文件相關數據。

新建一個yml文件,當然properties文件也沒問題

zhbin:
 config:
   web-configs:
     name: Java旅途
     age: 20

新建實體類用來映射該配置

@Component
@ConfigurationProperties(prefix = "zhbin.config")
@Data
public class StudentYml {

   // webConfigs務必與配置文件相對應,寫為駝峰命名方式
   private WebConfigs webConfigs = new WebConfigs();

   @Data
   public static class WebConfigs {
       private String name;
       private String age;
   }
}
  • prefix = "zhbin.config"用來指定配置文件前綴

如果需要獲取list集合,則做以下修改即可。

zhbin:
 config:
   web-configs:
     - name: Java旅途
       age: 20
     - name: Java旅途2
       age: 202
@Component
@ConfigurationProperties(prefix = "zhbin.config")
@Data
public class StudentYml {

   private List<WebConfigs> webConfigs = new ArrayList<>();

   @Data
   public static class WebConfigs {

       private String name;
       private String age;
   }
}

經驗與坑

  • properties文件默認使用的是iso8859-1,并且不可修改

  • yml文件的加載順序高于properties,但是讀取配置信息的時候會讀取后加載的

  • @PropertySource注解默認只會加載properties文件

  • @PropertySource注解可以與任何一種方式聯合使用

  • 簡單值推薦使用@Value,復雜對象推薦使用@ConfigurationProperties

到此,關于“Spring Boot讀取配置文件的方式有哪些”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

白河县| 双流县| 剑河县| 望城县| 松滋市| 江西省| 多伦县| 盐池县| 辰溪县| 疏附县| 漳州市| 德江县| 安平县| 建瓯市| 元谋县| 玛沁县| 乌拉特中旗| 东至县| 漠河县| 定陶县| 沈丘县| 雷山县| 邛崃市| 惠州市| 内江市| 荣成市| 昭平县| 巴东县| 望江县| 阿城市| 邵东县| 临潭县| 高要市| 双辽市| 崇文区| 永平县| 和田县| 淮滨县| 晋中市| 鄂尔多斯市| 固原市|