Results 106 comments of Andrej Fink

@radcortez I love your programmatic API. With one `BeanPostProcessor` I even use it from Spring (not Boot). Your API allows precise control of what to include and there is no...

```java @Bean public static SmallRyeConfig smallRyeConfig ( @Autowired @NonNull ConfigurableEnvironment env ){ val ps = new SmallRyeConfigPropertySource(); env.getPropertySources() .addLast(ps); return config(); } public class SpringSmallRyeConfigPropertySource extends EnumerablePropertySource { SpringSmallRyeConfigPropertySource (){...

Injection works also almost as proposed ![no_hands](https://github.com/smallrye/smallrye-config/assets/362366/3b350cb5-a426-47be-bf2e-ace837f1b733)

Spring doesn't support anything external out of the box, of course: they have their own annotations for everything :-) But one can add processing of any annotation. More about it...

Thank You for the answer! Here (http://jira.qos.ch/browse/LOGBACK-1002) is example project. But junit test is harder for me (I don't know logback internals)... But if it "must" is - I can...

I have uploaded a new version of example project with unit test. http://jira.qos.ch/browse/LOGBACK-1002 http://jira.qos.ch/secure/attachment/11453/logback_groovy_config_include_support_junit.zip diff src\test\groovy\ch\qos\logback\classic\gaffer\GafferConfiguratorTest.groovy - last method src\test\input\gaffer\inc1.groovy src\test\input\gaffer\inc2.groovy

How can I help more with this? I think groovy DSL is a future. See gradle (groovy DSL) vs maven (XML). But without "include" it can't be used in Application...

NoStackTraceThrowable is marked as ```@Deprecated``` with javadoc ```@deprecated Use {@link NoStackTraceException} instead.```, but not deleted. It allows fixing other vert.x modules (if any exists) eventually without breaking or fixing all...

PR: https://github.com/eclipse-vertx/vert.x/pull/4855