Grails外部配置 [英] Grails external configuration

查看:98
本文介绍了Grails外部配置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我将 Log4jConfig.groovy 放在 grails-app / conf / configs /

我有一个像这样的异常:

And I got an exception like this:

...nested exception is org.codehaus.groovy.grails.exceptions.GrailsConfigurationException: Class not found loading Grails application: configs.Log4jConfig

Config.groovy:

In my Config.groovy:

def configsLocation = [Log4jConfig]
environments {
    development {
        grails.config.locations = configsLocation
    }
}

请先谢谢。

推荐答案

您需要在指定配置时指定包 configs 位置。如下所示将为您提供适当的结果:

You would need to specify the package configs while specifying the config location. Something like below will yield you appropriate result:

//Config.groovy
def configsLocation = [configs.Log4jConfig]
environments {
    development {
        grails.config.locations = configsLocation
    }
}

//grails-app/conf/configs/Log4jConfig.groovy
package configs //specify the package in config as well
my.foo = 1234
my.bar = "ABCD"

//Grails Console or Unit Test or render from controller
assert 1234 == grailsApplication.config.my.foo
assert "ABCD" == grailsApplication.config.my.bar

这篇关于Grails外部配置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆