Andrus Adamchik
Andrus Adamchik
Hi, @nvoxland , thanks for the update. Unfortunately `SearchPathResourceAccessor` does not solve the problem for me, as `classpath:` stripping still occurs before the path is passed to any ResourceAccessor. Will...
Correct. My view (and 3.x view) of ResourceAccessor is something that can process an unaltered URL from a config. This gives maximum flexibility to customize URL resolving. 4.x uses "base...
Security concern: if we are dealing with passwords we don't want to log them under any circumstances. So how do we tell that it is a password when looking at...
Cool. I guess in this case we need to explore API extension to allow to pass some explicit metadata (at least the name).
Hi! Yeah, variables substitution was kept out of config files by design. We do merge YAML/JSON configs by *key*. So making *values* dynamic buys us very little, but adds a...
Incidentally been reading [HikariCP configuration docs](https://github.com/brettwooldridge/HikariCP#essentials), and they mention "url-free" configuration approach (as the preferred approach no less), based on "dataSourceClassName" property. This allows to pass host name, port, etc....
It broke the tests in the app using 0.26-SNAPSHOT.
Nope, that's a straightforward test with "autoLoadModules" on. The failing file is coming from the upstream `.jar`. The problem occurs when running `mvn clean verify` from command line. It works...
Now that I think of it, the behavior should be to load both files instead of throwing. Even without a fat jar issue, people may put configs with repeating names...
@fzakaria : yeah, Dropwizard was the inspiration here. Though we switched to other tasks and let this one linger. > I prefer to use Typesafe Do you have links to...