I have an Spring Boot integration application with Camel-HTTP. Since Camel-HTTP has a dependency to geronimo-servlet
Spring Boot is trying to load the web application context.
How can I force Spring to not load the EmbeddedWebApplicationContext
?
I have tried to exclude all the AutoConfiguration classes found in org.springframework.boot.autoconfigure.web
with the @EnableAutoConfiguration(exclude = ...)
annotation.