deinspanjer
08/06/2018, 2:17 PM@Configuration @ConfigurationProperties class AppProps { @NotNull lateinit var sourceRoot: String}
and later on, inside a component class: @Component class Platform(..., appProps: AppProps) { init { val sourceRoot = appProps.sourceRoot } }
but when I try to print that val, it is empty.karelpeeters
08/06/2018, 3:36 PM