smallrye-config
smallrye-config copied to clipboard
SmallRye Config - A Java Configuration library
This is a prototype to support secret keys. - We use property expressions to represent a secret key value in the format `${provider_name:provider_custom_representation} - For instance a keystore would use...
This PR also includes - a fix for a property to match what's in to-jakarta.sh - a local definition to avoid failures on non-english systems
Prototype to support the `TOML` format. - [x] This requires https://github.com/smallrye/smallrye-config/pull/489 to support Collections mappings. - No support for bidimensional collections. - The library used to parse the file, does...
I tried to set env var as follows: `TEST_LANGUAGE_DE-ETR=Einfache Sprache` and got the following error: `java.util.NoSuchElementException: SRCFG00014: The config property test.language.de-etr#value is required but it could not be found in...
I can't find a way to evaluate successfully something like `x\${x}` to `x\foo`. With config: ``` x: foo a: x/${x} b: x\${x} c: x\${x} d: x\\${x} e: x\\\${x} f: x\\\\${x}...
Hi Do you have any plans to support Jakarta EE 9(9.1)? The latest Microprofile version (5.0) is already based on Jakarta EE 9. However I noticed that even the latest...
Something like this should work: ```java @ConfigMapping(prefix = "map") public interface MapOfList { Map map(); } ``` But it got broken when the `Collection` support was added because now the...
This has been attempted in https://github.com/smallrye/smallrye-config/pull/513. I think it would be useful to include the name of the bean causing the Exception for bad `@ConfigProperties` beans In example: Scenario Example...
None of the smallrye artefacts contain JPMS metadata making use of any libraries which depend upon smallrye exceedingly painful for Java versions > 8. As JavaFX mandates Java 11 or...
In process of migrating some Spring Boot projects to Quarkus, we discover a lack of this feature. Our current Pod config looks like this: ```yaml env: - name: SPRING_CONFIG_ADDITIONAL_LOCATION value:...