Are there any common things to watch out for when ...
# spring
a
Are there any common things to watch out for when wiring Properties from a yml file in kotlin?
I can make it work like this
Copy code
@ConfigurationProperties("app")
class ApplicationProperties {
    lateinit var graph: String
    lateinit var label: String
    var size: Int = 0
}
doesn't seem to work via constructor