RedirectAttrebutes 에러



[문제]


Spring redirect POST parameter 를 사용중에 다음과 같은 에러가 발생하였다.


nested exception is java.lang.IllegalStateException: 

Argument [RedirectAttributes] is of type Model or Map but is not assignable from the actual model.

You may need to switch newer MVC infrastructure classes to use this argument.] with root cause



[해결책]

xml 파일에 다음 코드를 추가한다.

해당 코드로 인해 스프링 3.1부터는 Spring Web MVC 를 위해 설정해야 하는 값들이 자동으로 추가 된다.


<mvc:annotation-driven />





+ Recent posts