我在我的应用程序中使用SimpleUrlHandlerMapping
。由于特殊原因,我不想使用AnnotationHandlerMapping
。
我需要删除<mvc:annotation-driven />
才能使用SimpleUrlHandlerMapping。如果我在application-context.xml中使用<mvc:annotation-driven />
,则会给出异常。
现在我的问题是我无法在我的应用程序中使用RedirectAttributes
。因为它给出以下异常。针对此问题的任何解决方法?
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
也可以有人向我解释<mvc:annotation-driven />
中的实际内容吗?