加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

Groovy配置文件中的继承

发布时间:2020-12-14 16:21:20 所属栏目:大数据 来源:网络整理
导读:我需要通过ConfigSlurper定义和读取Groovy配置文件中的几个属性,这些属性将共享一些公共字段并仅添加一个特定字段.像这样的东西: config { // this is something like abstract property common { field1 = 'value1' field2 = 'value2' } property1 { // in
我需要通过ConfigSlurper定义和读取Groovy配置文件中的几个属性,这些属性将共享一些公共字段并仅添加一个特定字段.像这样的东西:

config {
  // this is something like abstract property
  common {
    field1 = 'value1'
    field2 = 'value2'
  }

  property1 {
    // include fields from common here
    customField = 'prop1value'
  }

  property2 {
    // include fields from common here
    customField = 'prop2value'
  }
}

我很好奇是否有可能以某种方式实现这一目标.因为我对Groovy不是很熟悉,所以我目前的解决方案并不理想,我会说:

config {
  common {
    field1 = 'value1'
    field2 = 'value2'
  }

  property1 = common.clone()
  property1 {
    customField = 'value'
  }

  property2 = common.clone()
  property2 {
    customField = 'value'
  }
}
config.remove('common')

谢谢你的建议

解决方法

你可以做:

config {
    // A common map of values
    def common = [
        field1: 'value1',field2: 'value2'
    ] as ConfigObject

    property1 {
        customField = 'value'
    }

    property2 {
        customField = 'value'
    }

    property1.merge(common)
    property2.merge(common)
}

这是你的意思吗?

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读