读书人

Spring总结-@Component,@Service,@Con

发布时间: 2013-01-25 15:55:29 作者: rapoo

Spring总结-----@Component,@Service,@Controller,@Repository

在一个稍大的项目中,通常会有上百个组件,如果这些组件采用xml的bean定义来配置,显然会增加配置文件的体积,查找以及维护起来也不太方便。Spring2.5为我们引入了组件自动扫描机制,他可以在类路径底下寻找标注了@Component,@Service,@Controller,@Repository注解的类,并把这些类纳入进spring容器中管理。它的作用和在xml文件中使用bean节点配置组件时一样的。要使用自动扫描机制,我们需要打开以下配置信息:?

Java代码??Spring总结-@Component,@Service,@Controller,@Repository
  1. <?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"??
  2. >??
  3. ??
  4. <context:component-scan?base-package=”com.eric.spring”>???
  5. </beans>???
  6. 其中base-package为需要扫描的包(含所有子包)?@Service用于标注业务层组件,@Controller用于标注控制层组件(如struts中的action),@Repository用于标注数据访问组件,即DAO组件,而@Component泛指组件,当组件不好归类的时候,我们可以使用这个注解进行标注。???
  7. @Service?public?class?VentorServiceImpl?implements?iVentorService?{???
  8. }?@Repository?public?class?VentorDaoImpl?implements?iVentorDao?{??
  9. }?getBean的默认名称是类名(头字母小写),如果想自定义,可以@Service(“aaaaa”)这样来指定,这种bean默认是单例的,如果想改变,可以使用@Service(“beanName”)?@Scope(“prototype”)来改变。可以使用以下方式指定初始化方法和销毁方法(方法名任意):?@PostConstruct?public?void?init()?{??
  10. }??
  11. @PreDestroy?public?void?destory()?{??
  12. } ?

读书人网 >操作系统

热点推荐