spring注解@Component、@Repository、@Service、@Controller的区别

现在Web应用程序绝大多数都是采用了经典的三层分层结构,因此最好在持久层、业务层和控制层分别采用 @Repository、@Service 和@Controller 对分层中的类进行注解,而用@Component对那些比较中立的类进行注解。在一个稍大点的项目中,通常会有上百个组件,如果这些组件采用xml方式的bean定义来配置话,显然会增加applicationContext.xml配置文件的体积,查找及维护起来也不太方便。Spring2.5为我们引入了组件自动扫描机制,它可以在类路径下寻找标注了@Component,@Service,@Controller,@Repository注解的类,并把这些类纳入进spring容器中管理。它的作用和在applicationContext.xml文件中使用bean节点配置组件是一样的。要使用自动扫描机制,我们需要打开以下配置信息(这里还添加了对beans、aop、tx(事务)的引用):

<beans xmlns="http://www.springframework.org/schema/beans" xmlns:aop="http://www.springframework.org/schema/aop"
  xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
  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-2.5.xsd
    http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
    http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
	<!-- 采用扫描 + 注解的方式进行开发 可以提高开发效率,后期维护变的困难了,可读性变差了 -->
	<context:component-scan base-package="com.study.persistent.services" />
	......
</beans>

 其中base-package为需要扫描的包(含所有子包),@Service用于标注业务层组件,即表示定义一个bean,自动根据bean的类名实例化一个首写字母为小写的bean,例如Chinese实例化为chinese,如果需要自己改名字则:@Service("你自己改的bean名"),@Controller用于标注控制层组件(如struts中的action),@Repository用于标注数据访问组件,即DAO组件,而@Component泛指组件,当组件不好归类的时候,我们可以使用这个注解进行标注。

注入方式:
把DAO实现类注入到service实现类中,把service的接口(注意不要是service的实现类)注入到action中,注入时不要new这个注入的类,因为spring会自动注入,如果手动再new的话会出现错误。然后属性加上@Autowired后不再需要getter()和setter()方法,spring也会自动注入。
注解:
在spring的配置文件里面只需要加上<context:annotation-config/>和<context:component-scanbase-package="需要实现注入的类所在包"/>,可以使用base-package="*"表示全部的类。

在接口前面标上@Autowired和@Qualifier注释使得接口可以被容器注入,当接口存在两个实现类的时候必须指定其中一个来注入,使用实现类首字母小写的字符串来注入,如:

public class TestXxx {
@Autowired      
@Qualifier("chinese")       
private Man man;
......
}

 一些spring注解的例子:

//@Service服务层组件,用于标注业务层组件
@Service 
public class TestServiceImpl implements ITestService { 
	......
} 
//@Repository持久层组件,用于标注数据访问组件,即DAO组件
@Repository 
public class TestDaoImpl implements ITestDao { 
	......
} 

 其中的ITestService、ITestDao为接口,获取时用getBean的默认名称是类名(头字母小写)。

猜你喜欢

转载自jiangyupeng.iteye.com/blog/2408921