微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

通配符的匹配很全面, 但无法找到元素 'context:component-scan' 的声明

一开始的context.xml中的配置文件如下:

<?xml version="1.0" encoding="UTF-8"?>
<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"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
    <context:component-scan base-package="com.alice.*"/>
    <context:property-placeholder location="classpath:config.properties"/>
    <import resource="classpath*:application-cache.xml" />
    <import resource="classpath*:application-spring.xml" />
    <import resource="classpath*:application-mybatis.xml"/>
</beans>

结果运行的时候报以下的错误

通配符的匹配很全面,但无法找到元素 ‘context:component-scan‘ 的声明

经各种百度错误原因在于beans中的元素不全面,至少缺少以下两个

http://www.springframework.org/schema/context  http://www.springframework.org/schema/context/spring-context.xsd

补充完整后,运行即可。

<?xml version="1.0" encoding="UTF-8"?>
<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"
       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">
    <context:component-scan base-package="com.alice.*"/>
    <context:property-placeholder location="classpath:config.properties"/>
    <import resource="classpath*:application-cache.xml" />
    <import resource="classpath*:application-spring.xml" />
    <import resource="classpath*:application-mybatis.xml"/>
</beans>

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。