项目作者: atbashEE

项目描述 :
MicroProfile Config port to Java 7 with extensions
高级语言: Java
项目地址: git://github.com/atbashEE/atbash-config.git
创建时间: 2017-11-26T20:16:07Z
项目社区:https://github.com/atbashEE/atbash-config

开源协议:Apache License 2.0

下载


License
Build Status
Maven Central

atbash-config

Additional functionality on top of MicroProfile Config 1.x - 3.x

If you still need support for Java 7, please use version v0.9.3

Atbash configuration extension

By adding the Atbash configuration Maven artifact, you add some additional features as described in the introduction section.

This artifact can be used in combination with the Java 7 ported code but also works with any other MP Config 1.1 compliant implementation.

  1. <dependency>
  2. <groupId>be.atbash.config</groupId>
  3. <artifactId>atbash-config</artifactId>
  4. <version>${atbash.config.version}</version>
  5. </dependency>

The list of features is described in the Atbash configuration features section.

When using The Atbash configuration extension with a ‘real’ implementation, it is advised to exclude the be.atbash.config:microprofile-config-api since these classes are already present (through the dependency on the MP API from the ‘real’ configuration implementation)

  1. <dependency>
  2. <groupId>be.atbash.config</groupId>
  3. <artifactId>atbash-config</artifactId>
  4. <version>${atbash.config.version}</version>
  5. <exclusions>
  6. <exclusion>
  7. <groupId>be.atbash.config</groupId>
  8. <artifactId>microprofile-config-api</artifactId>
  9. </exclusion>
  10. </exclusions>
  11. </dependency>

User manual

See here