Java 구성에서는 다음 예제와 같이 @EnableWebMvc
어노테이션을 사용하여 MVC 구성을 활성화할 수 있습니다.
@Configuration
@EnableWebMvc
public class WebConfig {
}
XML 구성에서는 다음 예제와 같이 <mvc:annotation-driven>
요소를 사용하여 MVC 구성을 활성화할 수 있습니다.
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/mvc
https://www.springframework.org/schema/mvc/spring-mvc.xsd">
<mvc:annotation-driven/>
</beans>
이전 예제에서는 다수의 Spring MVC 인프라 Bean을 등록하고 클래스 경로에서 사용 가능한 종속성에 적응합니다(예: JSON, XML 등에 대한 페이로드 변환기).