关于spring配置文件的context:component-scan不能被识别问题解决方法

 错误代码:


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

原因是:没有引入context约束:

 xmlns:context="http://www.springframework.org/schema/context" 

整体代码:


    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"> 

添加上上面的即可解决;

 

你可能感兴趣的:(关于spring配置文件的context:component-scan不能被识别问题解决方法)