当前位置: 代码迷 >> Web前端 >> 透过在classpath自动扫描方式把组件纳入spring容器中管理
  详细解决方案

透过在classpath自动扫描方式把组件纳入spring容器中管理

热度:276   发布时间:2012-06-29 15:48:47.0
通过在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泛指组件,当组件不好归类的时候,我们可以使用这个注解进行标注。




见例子解释:

从来面的知识点可以知道:通过@Component、@Service、@Controller、@Repository
我们可以通过classpath自动扫描方式把组件纳入spring容器中管理

@Service("myPersonServer")//此时使用myPersonServer来获得这个bean
如果没有知道这个名默认是这个类的基础类名其首字母必须小写。


默认情况下这个bean是单例singleton
@Scope("prototype ")//此时这个bean作用域是原型每次通过getBean("or 或name")得到不同的bean对象

@PostConstruct//这个bean初始化后调用这个方法
public void init()
{
System.out.println("初始化");
}

@PreDestroy//这个bean销毁时候调用这个方法
public void destory()
{
System.out.println("销毁对象");
}

  相关解决方案