Git Product home page Git Product logo

configjsr's Introduction

ConfigJSR

ConfigJSR

JSR-382 - Configuration API for Java, v1.0

Specification Leads: Emily Jiang, Mark Struberg

This is the official Source Repository of this very JSR.

Status

Configuration API for Java JSR Draft - Work In Progress!

How to Contribute?

Source Repository

The source code is available under the Apache License, v2.0 and hosted at https://github.com/eclipse/ConfigJSR

Mailing Lists

The Expert Group list is only used for announcements and voting.

All the normal interaction is going on on the general discussion list

To subscribe to a list just send a mail to configjsr-discuss-join (at) eclipse.org

Rationale

The majority of applications need to be configured based on a running environment. It must be possible to modify configuration data from outside an application so that the application itself does not need to be repackaged.

The configuration data can come from different locations and in different formats (e.g. system properties, system environment variables, .properties, .xml, datasource). We call these config locations ConfigSources. If the same property is defined in multiple ConfigSources, we apply a policy to specify which one of the values will effectively be used.

Under some circumstances, some data sources may change dynamically. The changed values should be fed into the client without the need for restarting the application. This requirement is particularly important for microservices running in a cloud environment. The JavaConfig approach allows to pick up configured values immediately after they got changed.

Influences and History

There are a number of Config projects which directly influenced this proposal and acted as basis for this API, such as:

The approach of those got merged together into MicroProfile Config (https://github.com/eclipse/microprofile-config). This now serves as a starting point for this very JSR.

Implementations

JavaConfig does not contain an implementation itself but only provides the specified API and, a TCK and documentation.

Design

The current configuration of an application can be accessed via ConfigProvider#getConfig().

A Config consists of the information collected from the registered javax.config.spi.ConfigSource s. These ConfigSource s get sorted according to their ordinal. That way it is possible to overwrite configuration with lower importance from outside.

By default there are 3 default ConfigSources:

  • System.getProperties() (ordinal=400)

  • System.getenv() (ordinal=300)

  • all META-INF/javaconfig.properties files on the ClassPath. (default ordinal=100, separately configurable via a config_ordinal property inside each file)

Therefore, the default values can be specified in the above files packaged with the application and the value can be overwritten later for each deployment. A higher ordinal number takes precedence over a lower number.

Custom ConfigSources

It is possible to write and register a custom ConfigSources. An example would be a ConfigSource which gets the configured values from a shared database table in a cluster.

Building

The whole JavaConfig project can be built via Apache Maven

$> mvn clean install

configjsr's People

Contributors

atsticks avatar brenopessoa avatar daniel-dos avatar doychin avatar eclipsewebmaster avatar emily-jiang avatar gunnarmorling avatar hendrikebbers avatar jeanouii avatar jmesnil avatar johnament avatar karianna avatar keilw avatar kwsutter avatar mbenson avatar mikecroft avatar ondromih avatar ottlinger avatar sdaschner avatar smillidge avatar starksm64 avatar struberg avatar tomas-langer avatar

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.