Skip to content

Tag: spring-boot

ConfigurationProperties does not bind properties

I want to bind my application.properties into a class automatically by using @ConfigurationProperties annotation. First, I tried with @Value annotation and was able to inject property values into class variables. However, @ConfigurationProperties did not inject properties into values. my application.propertie…

How to return a set of objects with Spring Boot?

I did a lesson about Spring Boot and it works perfectly. But what if I want to return a set of objects ? I tried doing this but it doesn’t work. How can I do it correctly ? With one object (it works): With many objects (it doesn’t work): Answer If you compare your original method to your newly mad…