如何修复Spring配置文件中context:component-scan关键字不能被识别的现象呢?

Java-问题王 Java每日一问 发布时间:2021-08-10 10:49:54 阅读数:12124 1
今天编写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>

版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。

本文链接: https://www.Java265.com/JavaProblem/202108/652.html

最近发表

热门文章

好文推荐

Java265.com

https://www.java265.com

站长统计|粤ICP备14097017号-3

Powered By Java265.com信息维护小组

使用手机扫描二维码

关注我们看更多资讯

java爱好者