How can I test logic that integrates with early Spring bootstrapping?
I am trying to prevent my spring boot application to start if I consider two or more active profiles to be conflicting. I.e. dev
and prod
should not be active at the same time.
How do I test that Spring configuration of media type serialization is working correct?
This post has helped me to send CSV output from a controller when the desired media type is specified as a URL parameter. Here’s my configuration class that does this: