启用 MVC 配置
您可以使用@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 的自定义设置。更多详情请参见MVC 配置 API 部分和Spring Boot 专用文档。 |
上面的示例注册了许多 Spring MVC 基础设施 Bean并适应类路径上可用的依赖项(例如,JSON、XML 等的有效负载转换器)。