MVC 配置 API
在 Java 配置中,你可以实现 WebMvcConfigurer
接口,如下例所示
-
Java
-
Kotlin
@Configuration
@EnableWebMvc
public class WebConfig implements WebMvcConfigurer {
// Implement configuration methods...
}
@Configuration
@EnableWebMvc
class WebConfig : WebMvcConfigurer {
// Implement configuration methods...
}
在 XML 中,您可以检查 <mvc:annotation-driven/>
的属性和子元素。您可以查看 Spring MVC XML 架构 或使用 IDE 的代码完成功能来发现可用的属性和子元素。