如何修复Spring配置文件中context:component-scan关键字不能被识别的现象呢?
今天编写Spring的配置文件时,出现了 context:component-scan 关键字无法识别的现象,
那么针对这种情况如何处理呢?下文将一一道来,如下所示:
无法识别的配置文件
那么针对这种情况如何处理呢?下文将一一道来,如下所示:
无法识别的配置文件
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" 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:component-scan base-package="package01"></context:component-scan>
出现这种现象的原因,是由于没有引入相应的context约束文件, 我们只需加入相应的配置即可 xmlns:context="http://www.springframework.org/schema/context"
<?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="package01"></context:component-scan>
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。