How to exclude a configuration from Spring Boot Application
I had recenty came across a situation where I had to exclude a @Configuration
from one of the dependencies.
java
@SpringBootApplication(exclude = {LiquibaseAutoConfiguration.class})
It is always important to check and know what is being configured for our
SpringBootApplication
.