I'm having a very simple requirement. I need to print out every single property existing in my spring boot application.
I do not mean the spring boot properties. I mean any single, custom defined properties.
Is there a simple way, or do I have to write a reflection based tool, to find all @Value annotations, etc... This must exist already.
thanks