Using Quarkus configuration system, what would be the best way to inject a list of objects in my application ?
In my case I want to configure a list of servers and their types. Using yaml configs that would be :
app.servers
- uri: host1
type: type1
- uri: host2
type: type2
I can only find solution for array of primitive types but is it possible for custom class ?