Spring源码学习——通过包扫描形式向容器中注入Bean

本文探讨了Spring框架中通过包扫描向容器注册Bean的两种方法:一是利用配置文件中的<context:component-scan>标签,指定base-package属性;二是采用注解方式,如@ComponentScan。在注解方式中,可以使用通配符**和逗号分隔多个包路径。通过测试类验证,这两种方式都能成功将controller和service层的Bean注入到Spring容器。
摘要由CSDN通过智能技术生成

在使用Spring时经常使用包扫描的形式向容器中添加Bean,方法有两种。

第一种 使用配置文件 的形式,使用 <context:component-scan> 标签进行包扫描,其中“base-package”属性是用来配置要扫描的包,配置文件示例如下:

<?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="*" />
    
    <bean id="person" class="Dao.Person">
        <property name="name" value="zs"/>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值