启用MVC配置

在Java配置中,您可以使用@EnableWebMvc注解来启用MVC配置,如下例所示:

  • Java

  • Kotlin

@Configuration
@EnableWebMvc
public class WebConfig {
}
@Configuration
@EnableWebMvc
class WebConfig

在XML配置中,您可以使用<mvc:annotation-driven>元素来启用MVC配置,如下例所示:

<?xml version="1.0" encoding="UTF-8"?>
<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 MVC基础设施bean,并适应类路径上可用的依赖项(例如,用于JSON、XML等的有效载荷转换器)。