mvc:annotation-driven的前缀 "mvc"未绑定

Posted yang-xiansen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mvc:annotation-driven的前缀 "mvc"未绑定相关的知识,希望对你有一定的参考价值。

缺少MVC的配置,正确配置如下:

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
        xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd  ">

以上是关于mvc:annotation-driven的前缀 "mvc"未绑定的主要内容,如果未能解决你的问题,请参考以下文章

如何摆脱 <mvc:annotation-driven />?

mvc:annotation-driven 不能解决 406 错误

springMVC-mvc:annotation-driven

SpringMVC源码总结mvc annotation-driven和mvc message-converters

在 applicationContext.xml 中添加 <mvc:annotation-driven> 时出错

Spring MVC 初始化源码—<mvc:annotation-driven >配置标签的源码解析