I am trying to configure @PropertySource for my Spring-based application.
In Java, I could do something like this:
@PropertySource(value = {"application.properties","other.properties" })
I tried arrayOf in Kotlin but I end up with a type mismatch:
@PropertySource(value = arrayOf("application.properties", "other.properties"))
What is the right way to go here?