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 时,您可能想要使用类型为 |
前面的示例注册了多个Spring MVC基础结构bean并适应类路径上可用的依赖项(例如,用于JSON、XML等有效负载转换器)。