spring-projects-experimental / spring-fu

Configuration DSLs for Spring Boot
Apache License 2.0
1.67k stars 138 forks source link

Fix configuration properties default value support #251

Closed sdeleuze closed 4 years ago

sdeleuze commented 5 years ago

data class SampleProperties(val prop1: String = "default") complains about missing value even if we provide it via Kotlin default parameter value. This works fine with @ConfigurationProperties + @ConstructorBinding.