小编典典

如何在Spring中绑定属性的字符串数组?

spring-boot

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

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

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

我将Java 6与Tomcat 7和Spring Boot 1.4一起使用


阅读 361

收藏
2020-05-30

共1个答案

小编典典

按着这些次序

1)@Value(“ $ {some.server.url}”)私有列表网址;

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

3)您应该为实例变量“ urls”设置getter和setter

2020-05-30