MVC Config 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/>
の属性とサブ要素を確認できます。IDE の Spring MVC XML スキーマ (英語) を表示するか、コード補完機能を使用して、使用可能な属性とサブエレメントを見つけることができます。