美文网首页
springboot2.2.6.RELEASE chapter1

springboot2.2.6.RELEASE chapter1

作者: 淼哥1986 | 来源:发表于2020-04-04 09:38 被阅读0次
    my.servers[0]=dev.example.com
    my.servers[1]=another.example.com
    
    @ConfigurationProperties(prefix="my")
    public class Config {
        private List<String> servers = new ArrayList<String>();
        public List<String> getServers() {
            return this.servers;
        }
    }
    

    相关文章

      网友评论

          本文标题:springboot2.2.6.RELEASE chapter1

          本文链接:https://www.haomeiwen.com/subject/siddphtx.html