archaius icon indicating copy to clipboard operation
archaius copied to clipboard

Library for configuration management API

Results 117 archaius issues
Sort by recently updated
recently updated
newest added

Using them same property com.netflix.config.dynamo.tableName with delimiter , eg: com.netflix.config.dynamo.tableName=CommonProperties,MyAppProperties Use case: allow multiple modules to share configuration while separating private properties.

Please review https://github.com/Netflix/archaius/pull/407 first. This adds on top of that. This fixes issue https://github.com/Netflix/archaius/issues/403 with the added benefit that we're now able to poll for updated typesafe configs. Note: Upgraded...

v2

This is very useful for the remote TypesafeConfigLoader, which I’m going to add in a different pull request. It makes it possible to enhance the config with objects of type...

v2

This commit builds on top of https://github.com/Netflix/archaius/pull/405 and adds support for injecting different `List` configs. It also adds support for https://github.com/Netflix/archaius/issues/403

v2

This change makes it possible to use `ConfigProxyFactory` with any application that still uses Archaius1 for its configuration. Libraries can now develop to the Archaius2 style of configuration using interfaces...

v2

This issue is to discuss enhancements to the current 2.x Decoder class. Currently there is a single decoder within each Config instance often with that decoder needing to be shared...

v2

This test will fail if there is no `application.properties` file on the classpath: ``` java @Test public void getConfig() throws Exception { Guice.createInjector(new ArchaiusModule()).getInstance(Config.class); } ``` The module specifies `.withFailOnFirst(false)`,...

When creating a custom decoder and using the DefaultAppConfig.builder() pattern the custom decoder is ignored when trying to parse the property value. Example Decoder ``` java import com.netflix.archaius.DefaultDecoder; import java.time.LocalDate;...

v2