作用
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();
}
}
输出: