详述context:component-scan作用

作用

context:component-scan扫描base-package属性的包及其子包的所有类,并为添加了@Controller、@Service、@Component、@Repository修饰的类创建对象并存入IoC容器,调用的是默认构造方法。
例如:

<context:component-scan base-package="com.csdn"></context:component-scan>
//会扫描com.csdn及其子包的所有类。

如果此时com.csdn及其子包中有@Controller、@Service、@Component、@Repository修饰的类:

@Service
public class UserInfoDao implements IUserInfoDao {
	public UserInfoDao() {
		System.out.println("构造方法");
	}
}

则创建IoC容器时,会自动创建UserInfoDao对象:

public class Test {

	public static void main(String[] args) {
		ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("application.xml");
		applicationContext.close();
	}
}

输出:
在这里插入图片描述

如果上述修饰的类中有@Autowired修饰的成员变量,则自动赋值:
例如:

@Service
public class UserInfoDao implements IUserInfoDao {

	@Autowired
	private Date date;
	
	public Date t() {
		return date;
	}
}

在配置中添加:

<bean id="date" class="java.util.Date"></bean>

则调用t()方法时,会自动赋值:

public class Test {

	public static void main(String[] args) {
		ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("application.xml");
		UserInfoDao userInfoDao = applicationContext.getBean(UserInfoDao.class);
		System.out.println(userInfoDao.t());
		applicationContext.close();
	}
}

输出:
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值