gpt4 book ai didi

Grails 从 config.groovy 中访问当前环境

转载 作者:行者123 更新时间:2023-12-02 08:39:01 25 4
gpt4 key购买 nike

使用 Grails OAuth 插件需要在 Config.groovy 中提供一个绝对回调 URL。但是我对每个环境都有不同的 serverURL。

有没有办法从 Config.groovy 内部获取当前环境,这是我想做的一个例子:

def devServerUrl = 'http://dev.example.com'
def prodServerUrl = 'http://prod.example.com'
def currentServerUrl = grailsApplication.metadata.environment == 'development' ? devServerUrl : prodServerUrl;

environments {
development {
grails {
serverURL = devServerUrl
}
}
production {
grails {
serverURL = prodServerUrl
}
}
}

oauth {
providers {
runkeeper {
api = RunKeeperApi
key = 'key'
secret = 'secret'
callback = currentServerUrl + '/oauth/runkeeper/callback'
}
}
}

有什么想法吗?谢谢!

最佳答案

试试这个:

def currentServerUrl = Environment.current.name == 'development' ? devServerUrl : prodServerUrl;

关于Grails 从 config.groovy 中访问当前环境,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18259223/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com