通过在classpath自动扫描方式把组件纳入spring容器中管理 前面的例子我们都是使用XML的bean定义来配置组件。在一个稍大的项目中,通常会有上百个组件,如果这些这组件采用xml的bean定义来配置,显然会增加配置文件的体积,查找及维护起来也不太方便。spring2.5为我们引入了组件自动扫描机制,他可以在类路径底下寻找标注了@Component、@Service、@Controller、@Repository注解的类,并把这些类纳入进spring容器中管理。它的作用和在xml文件中使用bean节点配置组件是一样的。要使用自动扫描机制,我们需要打开以下配置信息: <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-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd"> <context:component-scan base-package="cn.itcast"/> </beans> 其中base-package为需要扫描的包(含子包)。 @Service用于标注业务层组件、 @Controller用于标注控制层组件(如struts中的action)、@Repository用于标注数据访问组件,即DAO组件。而@Component泛指组件,当组件不好归类的时候,我们可以使用这个注解进行标注。 目前的spring 只是区分了以上注解,但是在底层没有具体实现上的区分 验证步骤: (1) 修改beans.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-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd"> <!-- 扫描 cn.com.xinli包下以及子包种有 @Service @Controller @Repository @Component 注解的类,一旦发现,则将其纳入到spring容器中管理 --> <context:component-scan base-package="cn.com.xinli"></context:component-scan> </beans> (2) 给两个类加上 @Service 注解 PersionDaoBean 和 PersionServiceBean (3) 写测试方法,由于我们使用的spring的自动扫描 注入bean,在等到bean的时候,就无法知道bean的名字,这里有一个默认的规则,就是你要得到的bean的名字就是你注解的类的 类名第一个字符小写
ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml"); PersionSevice ps=(PersionSevice)ctx.getBean("persionServiceBean"); PersionDao pd=(PersionDao)ctx.getBean("persionDaoBean"); System.out.println(ps); System.out.println(pd);
(4) 结果: cn.com.xinli.service.impl.PersionServiceBean@15663a2 cn.com.xinli.dao.impl.PersionDaoBean@a761fe 可见两个bean都被注入值了 注意: a.我们也可以在注解中指定 bean的名字,以后根据注解指定名字得到bean @Service("huxl")
b.我们也可以在注解中指定bean的 生成方式,默认是 单例 ,我们可以指定为 原型 @Service("huxl") @Scope("propotype")
c.也可以使用注解指定bean的初始化和销毁方法
@PostConstruct public void init() { log.info("初始化资源"); } @PreDestroy public void destory() { log.info("释放资源"); }
