728x90
반응형
[오류]
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.
org.springframework.web.bind.annotation.support.HandlerMethodInvoker.resolveHandlerArguments(HandlerMethodInvoker.java:322)
org.springframework.web.bind.annotation.support.HandlerMethodInvoker.invokeHandlerMethod(HandlerMethodInvoker.java:171)
org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter.invokeHandlerMethod(AnnotationMethodHandlerAdapter.java:436)
org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter.handle(AnnotationMethodHandlerAdapter.java:424)
org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:923)
org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:852)
org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:882)
org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:789)
javax.servlet.http.HttpServlet.service(HttpServlet.java:643)
javax.servlet.http.HttpServlet.service(HttpServlet.java:723)
org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:88)
org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76)
[해결책]
xml 파일에 다음 코드를 추가한다.
해당 코드로 인해 스프링 3.1부터는 Spring Web MVC 를 위해 설정해야 하는 값들이 자동으로 추가 된다.
<mvc:annotation-driven />
728x90
반응형
LIST
'IT 웹개발 > 스프링(Spring)' 카테고리의 다른 글
[SpringBoot] 스프링부트 포트번호 변경 방법 (0) | 2022.03.29 |
---|---|
[SpringBoot] 이클립스에서 스프링부트 프로젝트 시작, 실행하기 (0) | 2022.03.23 |
[SpringBoot] 스프링 이니셜라이즈로 스프링부트 프로젝트 생성하기 (0) | 2022.03.21 |
[Spring] 스프링에 LOGBACK 적용하기 (0) | 2022.02.25 |
[Spring] STS4 스프링 프레임워크 다운로드 설치 및 실행 (0) | 2022.02.04 |