Giter Site home page Giter Site logo

external-config's Introduction

External-Config

Tests

This plugin will mimic the Grails 2 way of handling external configurations defined in grails.config.locations.

It also provides scripts to convert between yml & groovy config.

Versions

Grails external-config
6.1.1 4.0.0
5.3.5 3.2.0
5.0.x 3.0.0
4.x.x 2.0.1
3.3.x 1.4.0

Creator and contributors

Plugin creator

Major contributors

Thank you!

Installation

Note: New coordinates! Not published with grails.org.plugins coordinates since BinTray went out of business. Now published under dk.glasius

Add dependency to your build.gradle:

dependencies {
    implementation 'dk.glasius:external-config:4.0.0' // or latest version
}

Usage

When you add this plugin to your Grails build, it will automatically look for the property grails.config.locations. Define this in either application.yml like this:

grails:
    config:
        locations:
            - classpath:myconfig.groovy
            - classpath:myconfig.yml
            - classpath:myconfig.properties
            - file:///etc/app/myconfig.groovy
            - file:///etc/app/myconfig.yml
            - file:///etc/app/myconfig.properties
            - ~/.grails/myconfig.groovy
            - ~/.grails/myconfig.yml
            - ~/.grails/myconfig.properties
            - file:${catalina.base}/myconfig.groovy
            - file:${catalina.base}/myconfig.yml
            - file:${catalina.base}/myconfig.properties

or in application.groovy like this:

grails.config.locations = [
        "classpath:myconfig.groovy",
        "classpath:myconfig.yml",
        "classpath:myconfig.properties",
        "file:///etc/app/myconfig.groovy",
        "file:///etc/app/myconfig.yml",
        "file:///etc/app/myconfig.properties",
        "~/.grails/myconfig.groovy",
        "~/.grails/myconfig.yml",
        "~/.grails/myconfig.properties",
        'file:${catalina.base}/myconfig.groovy',
        'file:${catalina.base}/myconfig.yml',
        'file:${catalina.base}/myconfig.properties',
]

It is also possible to define it in an environment specific block (yml):

environments:
    test:
        grails:
            config:
                locations:
                - ... 

or (groovy)

environments {
    test {
        grails {
            config {
                locations = [...]
            }
        }
    }
}   

~/ references the users $HOME directory. Notice, that using a system property you should use single quotes because otherwise it's interpreted as a Gstring.

The plugin will skip configuration files that are not found.

For .groovy and .yml files the environments blocks in the config file are interpreted the same way, as in application.yml or application.groovy.

Wildcard support

It is possible to use * as wildcards in the filename part of the configuration:

grails:
    config:
        locations:
            - file:/etc/app/myconfig*.groovy
            - ~/.grails/myconfig*.groovy

or

grails.config.locations = [
        "file:/etc/app/myconfig*.groovy",
        "~/.grails/myconfig*.groovy",
]

Note: that it only works for the file: and ~/ prefix.

Note: the wildcards are in the order they are found in the locations list, but the order of the expanded locations for each wildcard is not guaranteed, and is dependent on the OS used.

Getting configuration from another folder than /conf on classpath without moving it with Gradle script

If you wish to make your Grails application pull external configuration from classpath when running locally, but you do not wish to get it packed into the assembled war file (i.e. place the external configuration file in e.g. /external-config instead of /conf), then you can include the external configuration file to the classpath by adding the following line to build.gradle

tasks.named('bootRun') {
    doFirst {
        classpath += files("external-config")
    }
}

tasks.withType(Test) {
    doFirst {
        classpath += files("external-config")
    }
}

or alternatively add this to your dependencies:

provided files('external-config') // provided to ensure that external config is not included in the war file

Alternatively, you can make a gradle script to move the external configuration file to your classpath (e.g. /build/classes)

Micronaut support

The plugin will register the locations in grails.config.locations as micronaut.config.files. Please note, that Micronaut will fail, if it does not recognise the file extension.

Scripts

This plugin also includes two scripts, one for converting yml config, to groovy config, and one for converting groovy config to yml config. These scripts are not guaranteed to be perfect, but you should report any edge cases for the yml to groovy config here: https://github.com/virtualdogbert/GroovyConfigWriter/issues

grails yml-to-groovy-config has the following parameters:

  • ymlFile - The yml input file.
  • asClosure - An optional flag to set the output to be closure based or map based. The Default is closure based
  • outputFile - The optional output file. If none is provided, then the output will go to System.out.
  • indent - Optional indent. The default is 4 spaces
  • escapeList - An optional CSV list of values to escape, with no spaces. The default is 'default'

Sample usage

grails yml-to-groovy-config [ymlFile] [optional asClosure] [optional outputFile] [optional indent] [optional escape list]

grails groovy-to-yml-config has the following parameters:

  • groovy - The groovy input file.'
  • outputFile - The optional output file. If none is provided, then the output will go to System.out.
  • indent' - Sets the optional indent level for a file. The default is 4
  • flow - Sets the optional style of BLOCK or FLOWS. The default is BLOCK.

Sample usage

grails groovy-to-yml-config [ymlFile] [optional outputFile] [optional indent] [optinal flow]

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.