使用@Value註解從配置文件中讀取數組
@Value註解從配置文件讀取數組
作用:從配置文件中取值
用法:
1.取單個值
(1)configuration.properties配置
status.notice.switch=open
(2)java文件自動註入
@Value("${status.notice.switch}") private String statusNoticeSwitch;
2.取數組
(1)configuration.properties配置
lanwon.hospital.id=43534,234543,w353654
(2)java文件自動註入
@Value("#{'${lanwon.hospital.id}'.split(',')}") private List<String> hospitalIdList;
使用@Value註解註入值(配置文件讀取)
在 Spring 組件中使用 @Value 註解的方式,可以直接從 .properties,.yum 等配置文件獲取配置信息便於實現項目的配置化運行。
1. 配置方式
1.1 使用
1、@Value(“${key}”)
2、@Value(“#{configProperties[‘key’]}”) (SpEL表達式)
1.2 默認值配置
1、基礎方式: ${key}:defaultvalue
2. SpEL方式:
使用 Spring Expression Language (SpEL) 設置默認值。
下面的代碼標示在systemProperties屬性文件中,如果沒有設置 some.key 的值,my default system property value 會被設置成默認值。
@Value("#{systemProperties['some.key'] ?: 'my default system property value'}") private String spelWithDefaultValue;
2. 使用場景
2.1 聲明的變量
public static class FieldValueTestBean { @Value("#{ systemProperties['user.region'] }") private String defaultLocale; }
2.2 setter 方法
public static class PropertyValueTestBean { private String defaultLocale; @Value("#{ systemProperties['user.region'] }") public void setDefaultLocale(String defaultLocale) { this.defaultLocale = defaultLocale; } }
2.3 方法
public class SimpleMovieLister { private MovieFinder movieFinder; private String defaultLocale; @Autowired public void configure(MovieFinder movieFinder, @Value("#{ systemProperties['user.region'] }") String defaultLocale) { this.movieFinder = movieFinder; this.defaultLocale = defaultLocale; } // ... }
2.4 構造方法
public class MovieRecommender { private String defaultLocale; private CustomerPreferenceDao customerPreferenceDao; @Autowired public MovieRecommender(CustomerPreferenceDao customerPreferenceDao, @Value("#{systemProperties['user.country']}") String defaultLocale) { this.customerPreferenceDao = customerPreferenceDao; this.defaultLocale = defaultLocale; } // ... }
3 各種屬性的註入及其默認值設置
3.1 字符串
字符串類型的屬性設置默認值。
@Value("${some.key:my default value}") private String stringWithDefaultValue;
some.key 沒有設置值,stringWithDefaultValue 變量值將會被設置成 my default value 。
如果默認值設為空,也將會被設置成默認值。
@Value("${some.key:}") private String stringWithBlankDefaultValue;
3.2 基本類型
基本類型設置默認值。
@Value("${some.key:true}") private boolean booleanWithDefaultValue;
@Value("${some.key:42}") private int intWithDefaultValue;
3.3 包裝類型
包裝類型設置默認值。
@Value("${some.key:true}") private Boolean booleanWithDefaultValue; @Value("${some.key:42}") private Integer intWithDefaultValue;
3.4 數組
數組的默認值可以使用逗號分割。
@Value("${some.key:one,two,three}") private String[] stringArrayWithDefaults; @Value("${some.key:1,2,3}") private int[] intArrayWithDefaults;
以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。
推薦閱讀:
- Spring中如何使用@Value註解實現給Bean屬性賦值
- Spring中的註解@Autowired實現過程全解(@Autowired 背後的故事)
- SpringBoot超詳細講解@Value註解
- 使用@Value值註入及配置文件組件掃描
- Spring5使用JSR 330標準註解的方法