Hi. What does `@EnableWebMvc` exist for? :thinking...
# spring
s
Hi. What does
@EnableWebMvc
exist for? 🤔 I used this annotation. However, when I added
@EnableWebMvc
to some
Configuration
, the other
Configuration
seemed to be disabled...
s
It exists originally for non Spring Boot apps. If you use it Spring Boot backoff most of its web related config.
s
Thank you. I use Spring Boot and develop web application. So I shouldn't use this annotation..
👍 1