MVC 配置 API

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

  • Java

  • Kotlin

@Configuration
public class WebConfiguration implements WebMvcConfigurer {

	// Implement configuration methods...
}
@Configuration
class WebConfiguration : WebMvcConfigurer {

	// Implement configuration methods...
}

在XML中,您可以检查<mvc:annotation-driven/>的属性和子元素。您可以查看Spring MVC XML模式或使用IDE的代码补全功能来发现可用的属性和子元素。