Enable MVC Configuration

你可以使用@EnableWebMvc注释,通过以编程方式配置来启用MVC配置,或者使用带有XML配置的<mvc:annotation-driven>,如下例所示:

  • Java

  • Kotlin

  • Xml

@Configuration
@EnableWebMvc
public class WebConfiguration {
}
@Configuration
@EnableWebMvc
class WebConfiguration {
}
<beans xmlns="http://www.springframework.org/schema/beans"
	   xmlns:mvc="http://www.springframework.org/schema/mvc"
	   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	   xsi:schemaLocation="
			http://www.springframework.org/schema/beans
			https://www.springframework.org/schema/beans/spring-beans.xsd
			http://www.springframework.org/schema/mvc
			https://www.springframework.org/schema/mvc/spring-mvc.xsd">

	<mvc:annotation-driven/>

</beans>

当使用 Spring Boot 时,您可能想要使用类型为 WebMvcConfigurer@Configuration 类,但没有 @EnableWebMvc 来保留 Spring Boot MVC 自定项。请参阅 the MVC Config API section 中和 [专用 Spring Boot 文档](https://docs.spring.io/spring-boot/docs/current/reference/html/web.html#web.servlet.spring-mvc.auto-configuration) 中的更多详细信息。

前面的示例注册了多个Spring MVC基础结构bean并适应类路径上可用的依赖项(例如,用于JSON、XML等有效负载转换器)。