MVC Config API

In Java configuration, you can implement the WebMvcConfigurer interface, as the following example shows:

@Configuration
public class WebConfiguration implements WebMvcConfigurer {

  // Implement configuration methods...
}

In XML, you can check attributes and sub-elements of <mvc:annotation-driven/>. You can view the Web MVC XML schema or use the code completion feature of your IDE to discover what attributes and sub-elements are available.