How to use @ConfigurationProperties with Records?
Answering my own question. The above error raises from Spring Boot not being able to construct the bean because of the lack of a no-argument constructor. Records implicitly declare a constructor with a parameter for every member. Spring Boot allows us to use the @ConstructorBinding annotation to enable property binding by constructor instead of setter … Read more