如何在 Spring 中绑定属性的字符串数组? [英] How to bind a string array of properties in Spring?

查看:37
本文介绍了如何在 Spring 中绑定属性的字符串数组?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的 application.properties 文件中有以下内容

I have the following in my application.properties file

some.server.url[0]=http://url
some.server.url[1]=http://otherUrl

如何在@Bean 方法中使用@Value 注释来引用属性数组?

How do I refer to the array of properties using the @Value anotation inside a @Bean method?

我在 Tomcat 7 和 Spring boot 1.4 中使用 Java 6

I am using Java 6 with Tomcat 7 and Spring boot 1.4

推荐答案

按照以下步骤操作

1)@Value("${some.server.url}")私人列表网址;

1) @Value("${some.server.url}") private List urls;

2)@ConfigurationProperties("some.server")公共类 SomeConfiguration {

2) @ConfigurationProperties("some.server") public class SomeConfiguration {

3)你应该有 getter 和 setter 实例变量 'urls'

3) You should have getter and setter for instance variable 'urls'

这篇关于如何在 Spring 中绑定属性的字符串数组?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆