您好,登錄后才能下訂單哦!
這篇文章主要講解了“在Spring-Boot中怎么使用@Value注解注入集合類”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“在Spring-Boot中怎么使用@Value注解注入集合類”吧!
我們在使用spring框架進行開發時,有時候需要在properties文件中配置集合內容并注入到代碼中使用。本篇文章的目的就是給出一種可行的方式。
通常來說,我們都使用@Value注解來注入properties文件中的內容,注入集合類時,我們也使用@Value來注入。
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;
我們寫一個單測類來驗證上面的注入是否可行。
@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項目的文件夾結構)。
在我們使用的@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注解方式的單元測試中給出。
我們用@Value注解把properties文件中的內容注入了集合類,注解中以#開頭,其實就是使用了SpEL。
Spring-Boot的版本是2.2.1.RELEASE,之所以要說這個,是因為一開始使用1.x版本時無法注入Set和List。
感謝各位的閱讀,以上就是“在Spring-Boot中怎么使用@Value注解注入集合類”的內容了,經過本文的學習后,相信大家對在Spring-Boot中怎么使用@Value注解注入集合類這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。