通配符的匹配很全面, 但无法找到元素 ‘context:component-scan‘ 的声明
程序员文章站
2022-09-03 22:15:11
遇到这样类似的问题:是因为这个spring.xml文件中的命名空间依赖型没有声明完整1、通配符的匹配很全面, 但无法找到元素 ‘context:component-scan’ 的声明,看自己的的声明少了那一部分,有些xmlns中有,可xsi:schemaLocation中没有。
遇到这样类似的问题:是因为这个spring.xml文件中的命名空间依赖型没有声明完整
1、通配符的匹配很全面, 但无法找到元素 ‘context:component-scan’ 的声明,看自己的的声明少了那一部分,有些xmlns中有,可xsi:schemaLocation中没有。
<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:tx="http://www.springframework.org/schema/tx"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:mybatis-spring="http://mybatis.org/schema/mybatis-spring"
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/tx
http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd
http://mybatis.org/schema/mybatis-spring
http://mybatis.org/schema/mybatis-spring.xsd">
其他的一些这样的错误也类似,比如:通配符的匹配很全面, 但无法找到元素 ‘mvc:default-servlet-handler’ 的声明,等等
本文地址:https://blog.csdn.net/weixin_42936473/article/details/107305923