美文网首页
springboot 自定义配置信息

springboot 自定义配置信息

作者: 仙境999 | 来源:发表于2018-06-06 15:45 被阅读0次

    java:(简化起见, 使用lombok)

    @Data
    @Configuration
    @ConfigurationProperties(prefix = "myconfig")
    public class MyConfig {
        /**
         * 以map组装
         */
        Map<String, MyBean> map;
        
        /**
         * 以List组装
         */
        List<MyBean> list;
    
    
        @Data
        public static class MyBean {
            Integer id;
            String name;
        }
    }
    
    

    yml

    myconfig:
      map:
        aaa:
           id: 1
           name: a
        bbb:
           id: 2
           name: b
    
      list:
        - id: 3
          name: c
        - id: 4
          name: d
    

    相关文章

      网友评论

          本文标题:springboot 自定义配置信息

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