1.30 context:component-scan配置扫描包

戴着假发的程序员出品

[查看视频教程]

context:component-scan用于通知spring自动扫描的class 的包。

我们可以通过context:component-scan标签的base-package配置一个或者多个包名,spring会根据我们的配置自动扫描这些包下的所有类以及他们的子孙包下的所有的类,会自动处理所有拥有spring标准注解的类。(关于spring的标准注解请参看IOC的注解实现)。

我们在使用context:component-scan时需要添加对应的namespace。

案例:

<?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.boxuewa.dk.demo2,com.boxuewa.dk.demo4"/>

</beans>

使用context:component-scan隐式启用context:annotation-config的功能。使用context:component-scan时通常不需要包含context:annotation-config元素。

posted @ 2020-10-05 09:59  戴着假发的程序员0-1  阅读(418)  评论(0编辑  收藏  举报