Enable MVC Configuration

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

    1. @Configuration
    2. @EnableWebMvc
    3. public class WebConfig {
    4. }

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

    1. <?xml version="1.0" encoding="UTF-8"?>
    2. <beans xmlns="http://www.springframework.org/schema/beans"
    3. xmlns:mvc="http://www.springframework.org/schema/mvc"
    4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    5. xsi:schemaLocation="
    6. http://www.springframework.org/schema/beans
    7. https://www.springframework.org/schema/beans/spring-beans.xsd
    8. http://www.springframework.org/schema/mvc
    9. https://www.springframework.org/schema/mvc/spring-mvc.xsd">
    10. <mvc:annotation-driven/>
    11. </beans>

    前面的例子注册了一些 Spring MVC 基础设施 Bean,并适应 classpath 上可用的依赖关系(例如,JSON、XML 等的有效载荷转换器)。