在 Java 配置中,你可以实现 WebMvcConfigurer 接口,如下例所示:

    1. @Configuration
    2. @EnableWebMvc
    3. public class WebConfig implements WebMvcConfigurer {
    4. // Implement configuration methods...
    5. }

    在 XML 中,你可以检查 <mvc:annotation-driven/>的属性和子元素。你可以查看 Spring MVC 的 XML schema 或使用 IDE 的代码完成功能来发现有哪些属性和子元素。