Spring组件自动扫描

问题描述

一个系统往往有成千上万的组件,如果需要手动将所有组件都纳入Spring容器中管理,是一个浩大的工程。

解决方案

Spring 提供组件扫描(component scanning)功能。它能从classpath里自动扫描、侦测和实例化具有特定注解的组件。基本的注解是@Component,它标识一个受Spring管理的组件。其他特定的注解有@Repository、@Service和@Controller,它们分别标识了持久层、服务处和表现层的组件。

实现方法

User.java

package com.zzj.bean;

import javax.annotation.Resource;

import org.springframework.stereotype.Component;
@Component
public class User {
	@Resource
	private Car car;

	public void startCar(){
		car.start();
	}
}
Car.java
package com.zzj.bean;

import org.springframework.stereotype.Component;

@Component
public class Car {
	public void start(){
		System.out.println("starting car...");
	}
}
XML配置文件
<?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.zzj.bean"/>
</beans>
注意: 当开启Spring的自动扫描功能以后,自动注入的功能也开启了。



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值