How to refer to one configuration variable from ot

2019-02-14 20:14发布

For example:

Config.groovy:

// ...
grails.variable1 = "a"
grails.varibale2 = "${grails.variable1}bc"
//...

UPDATE 1

Way shown above works with grails 2.2.3. For older versions of grails please use solution @tim_yates suggested

1条回答
ゆ 、 Hurt°
2楼-- · 2019-02-14 20:29

You need to declare a variable:

def rootVar = 'a'
grails.variable1 = rootVar
grails.varibale2 = "${rootVar}bc"

Or you might be able to do it via a closure (not tested):

grails.variable1 = 'a'
grails.varibale2 = { -> "${grails.variable1}bc" }()
查看更多
登录 后发表回答