I am really new to Spring. I am using the external configuration function provided by spring boot. It works well, and I used it in several configuration classes, often only with default values. Now I want to get an overview of the configuration properties that I used. This means that I need to know all the properties set using @Value(...) or or using @ConfigurationProperties(prefix = ...) . Is there any way to get this information from Spring? I can do it with thought, but I think this is not the best way.
Chris source share