Spring 自动扫描组件

一般情况下,我们会在xml文件定义bean和component,spring有了自动扫描可以不用再xml文件中写bean和component。

    下面,我通过一个简单实例来演示。

用xml文件的方法:

   CustomerDao.java

package com.lzyer.springel.dao;

import org.springframework.stereotype.Component;


public class CustomerDao {

	@Override
	public String toString() {
		
		return "This is Customer Dao";
	}

	
}

CustomerService.java

package com.lzyer.springel.service;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

import com.lzyer.springel.dao.CustomerDao;


public class CustomerService {
	
	private CustomerDao customerDao;

	public CustomerDao getCustomerDao() {
		return customerDao;
	}
	public void setCustomerDao(CustomerDao customerDao) {
		this.customerDao = customerDao;
	}
	@Override
	public String toString() {
		return "CustomerService [customerDao=" + customerDao + "]";
	}
	
}
bean.xml

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
	http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
	http://www.springframework.org/schema/context
	http://www.springframework.org/schema/context/spring-context-3.0.xsd">
	
	
	
	
	
	<bean id="customerDao" class="com.lzyer.springel.dao.CustomerDao"></bean>
	
	<bean id="customerService" class="com.lzyer.springel.service.CustomerService">
		<property name="customerDao" ref="customerDao"></property>
	</bean>
	
</beans>
使用注解自动扫描的方式:

CustomerDao.java

package com.lzyer.springel.dao;

import org.springframework.stereotype.Component;

@Component
public class CustomerDao {

	@Override
	public String toString() {
		
		return "This is Customer Dao";
	}

	
}

CustomerService.java

package com.lzyer.springel.service;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

import com.lzyer.springel.dao.CustomerDao;

@Component
public class CustomerService {
	@Autowired
	private CustomerDao customerDao;

	public CustomerDao getCustomerDao() {
		return customerDao;
	}
	public void setCustomerDao(CustomerDao customerDao) {
		this.customerDao = customerDao;
	}
	@Override
	public String toString() {
		return "CustomerService [customerDao=" + customerDao + "]";
	}
	
}
bean.xml

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
	http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
	http://www.springframework.org/schema/context
	http://www.springframework.org/schema/context/spring-context-3.0.xsd">
	
	
	<context:component-scan base-package="com.lzyer.springel"></context:component-scan>
	
	
	<!--  
	<bean id="customerDao" class="com.lzyer.springel.dao.CustomerDao"></bean>
	
	<bean id="customerService" class="com.lzyer.springel.service.CustomerService">
		<property name="customerDao" ref="customerDao"></property>
	</bean>
	-->
</beans>
测试类:

package com.lzyer.springel;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.lzyer.springel.service.CustomerService;

public class ServiceAndDaoTest {

	public static void main(String[] args) {
		
		ApplicationContext context = new ClassPathXmlApplicationContext(new String[]{"bean.xml"});
		
		CustomerService cs = (CustomerService)context.getBean("customerService");
		
		System.out.println(cs);
	}
}

结果:




参考资料:http://www.mkyong.com/spring/spring-auto-scanning-components/

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值