我想在生产环境中使用外部属性文件进行数据库配置。我已尝试过一些来自博客和堆栈溢出的解决方案,但它仅适用于开发环境。
grailsVersion=3.3.2
答案 0 :(得分:0)
首先在src/main/resources
中创建属性文件(如果资源目录不存在,则创建它)。
然后从application.yml
删除配置(如果不会,那么它将覆盖)。
在Application.groovy
中加载文件:
def url = getClass().classLoader.getResource("myconfig.properties")
def confFile = new File(url.toURI())
Properties properties = new Properties()
confFile.withInputStream {
properties.load(it)
}
environment.propertySources.addFirst(new PropertiesPropertySource("local.config.location", properties))