owner
owner copied to clipboard
Add relaxed binding like Spring Boot offers
Spring Boot offers a useful feature called "relaxed binding". For example, the following could all be bound to "firstName":
firstName (standard camel case syntax) first-name (dashed notation, recommended for use in .properties and .yml files) FIRST_NAME (recommended when using system environment variables)
See External Configuration in the Spring Boot docs; scroll to "23.6.2 Relaxed binding".
I would like to see OWNER add relaxed binding.
Sounds pretty easy to implement. Thanks for the idea. Will do (when I have time).
I would enable this feature by default, then give the user the possibility to disable it using the @DisableFeature annotation.
Is this feature available ?
@s17t Not yet.