在Spring-Boot中如何使用@Value註解註入集合類
我們在使用spring框架進行開發時,有時候需要在properties文件中配置集合內容並註入到代碼中使用。本篇文章的目的就是給出一種可行的方式。
1.註入
通常來說,我們都使用@Value註解來註入properties文件中的內容,註入集合類時,我們也使用@Value來註入。
properties文件中的內容如下:
my.set=foo,bar my.list=foo,bar my.map={"foo": "bar"}
分別是我們要註入的Set,List,Map中的內容。
註入方式如下:
@Value("#{${my.map}}") private Map<String, String> map; @Value("#{'${my.set}'}") private Set<String> set; @Value("#{'${my.list}'}") private List<String> list;
2.驗證
我們寫一個單測類來驗證上面的註入是否可行。
@RunWith(SpringRunner.class) @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.NONE, classes = PropertiesTest.ClassUsingProperties.class) @TestPropertySource(locations = "classpath:test.properties") public class PropertiesTest { @Autowired private ClassUsingProperties classUsingProperties; @Test public void testInjectCollectionFieldsUsingPropertiesFile() { Map<String, String> map = classUsingProperties.getMap(); Set<String> set = classUsingProperties.getSet(); List<String> list = classUsingProperties.getList(); asserts(map, set, list); } private void asserts(Map<String, String> map, Set<String> set, List<String> list) { Assert.assertEquals(map.get("foo"), "bar"); Assert.assertTrue(set.contains("foo")); Assert.assertTrue(set.contains("bar")); Assert.assertTrue(list.contains("foo")); Assert.assertTrue(list.contains("bar")); } @Data @Component public static class ClassUsingProperties { @Value("#{${my.map}}") private Map<String, String> map; @Value("#{'${my.set}'}") private Set<String> set; @Value("#{'${my.list}'}") private List<String> list; } }
test.properties中的內容已經在上面給出,位置在test文件夾下的resources文件夾下面(maven項目的文件夾結構)。
3.原理
在我們使用的@Value註解中,每一個開頭都有個#,這其實就是說明我們使用瞭SpEL,如果直接使用SpEL,
就是下面的代碼:
ExpressionParser parser = new SpelExpressionParser(); Map<String, String> map = (Map<String, String>) parser .parseExpression({'foo':'bar'}") .getValue(Map.class); Set<String> set = (Set<String>) parser .parseExpression("'foo,bar'") .getValue(Set.class); List<String> list = (List<String>) parser .parseExpression("'foo,bar'") .getValue(List.class);
我們也使用單元測試來驗證:
@Test @SuppressWarnings("unchecked") public void testInitCollectionUsingSpEL() { ExpressionParser parser = new SpelExpressionParser(); Map<String, String> map = (Map<String, String>) parser .parseExpression("{'foo':'bar'}") .getValue(Map.class); Set<String> set = (Set<String>) parser .parseExpression("'foo,bar'") .getValue(Set.class); List<String> list = (List<String>) parser .parseExpression("'foo,bar'") .getValue(List.class); asserts(map, set, list); }
asserts方法的代碼已經在驗證使用@Value註解方式的單元測試中給出。
4.總結
我們用@Value註解把properties文件中的內容註入瞭集合類,註解中以#開頭,其實就是使用瞭SpEL。
Spring-Boot的版本是2.2.1.RELEASE,之所以要說這個,是因為一開始使用1.x版本時無法註入Set和List。
以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。
推薦閱讀:
- 詳解Spring Security中權限註解的使用
- springboot通過spel結合aop實現動態傳參的案例
- 使用Spring Expression Language (SpEL)全面解析表達式
- Java 中執行動態表達式語句前中後綴Ognl、SpEL、Groovy、Jexl3
- 在@Value註解內使用SPEL自定義函數方式