Spring注解@Component、@Repository、@Service、@Controller

来源:互联网 发布:捕食者算法 编辑:程序博客网 时间:2024/05/22 10:26

转载自:http://blog.csdn.net/zhang854429783/article/details/6785574

                http://crabboy.iteye.com/blog/339840

spring 2.5 中除了提供 @Component 注释外,还定义了几个拥有特殊语义的注释,它们分别是:@Repository、@Service 和@Controller。
在目前的 Spring 版本中,这 3 个注释和 @Component 是等效的,但是从注释类的命名上,很容易看出这 3 个注释分别和持久层、业务层和控制层(Web 层)相对应。
虽然目前这3 个注释和 @Component 相比没有什么新意,但 Spring 将在以后的版本中为它们添加特殊的功能。
 所以,如果 Web 应用程序采用了经典的三层分层结构的话,最好在持久层、业务层和控制层分别采用上述注解对分层中的类进行注释。

@Service用于标注业务层组件
@Controller用于标注控制层组件(如struts中的action)
@Repository用于标注数据访问组件,即DAO组件
@Component泛指组件,当组件不好归类的时候,我们可以使用这个注解进行标注。
如下:

@Servicepublic class VentorServiceImpl implements iVentorService {   }@Repositorypublic class VentorDaoImpl implements iVentorDao { }

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

<?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.xsdhttp://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context-2.5.xsd">    <context:component-scan base-package=”com.eric.spring”>   </beans> 


component-scan标签默认情况下自动扫描指定路径下的包(含所有子包),将带有@Component、@Repository、@Service、@Controller标签的类自动注册到spring容器。对标记了 Spring's @Required、@Autowired、JSR250's @PostConstruct、@PreDestroy、@Resource、JAX-WS's @WebServiceRef、EJB3's @EJB、JPA's @PersistenceContext、@PersistenceUnit等注解的类进行对应的操作使注解生效(包含了annotation-config标签的作用)。
 
getBean的默认名称是类名(头字母小写),如果想自定义,可以@Service(“aaaaa”)这样来指定。
 这种bean默认是“singleton”的,如果想改变
,可以使用@Scope(“prototype”)来改变。
可以使用以下方式指定初始化方法和销毁方法:

@PostConstructpublic void init() { } @PreDestroypublic void destory() { } 

 注入方式:
把DAO实现类注入到action的service接口(注意不要是service的实现类)中,注入时不要new 这个注入的类,因为spring会自动注入,如果手动再new的话会出现错误,
 然后属性加上@Autowired后不需要getter()和setter()方法,Spring也会自动注入。  
在接口前面标上@Autowired注释使得接口可以被容器注入,如:

@Autowired@Qualifier("chinese")private Man man; 

当接口存在两个实现类的时候必须使用@Qualifier指定注入哪个实现类,否则可以省略,只写@Autowired。

demo:

接口Man.java

public interface Man {     public String sayHello();  }  

Man的实现类Chinese和American:

@Service public class Chinese implements Man{      public String sayHello() {          return "I am Chinese!";      }  }  

 

@Servicepublic class American implements Man{      public String sayHello() {          return "I am American!";      }  }  

@Service注释表示定义一个bean,自动根据bean的类名实例化一个首写字母为小写的bean,例如Chinese实例化为chinese,American实例化为american,如果需要自己改名字则:@Service("你自己改的bean名")。

<?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">        <!-- 激活 Spring的 @Required,@Autowired,JSR 250's @PostConstruct, @PreDestroy and @Resource 等注解,          让这些标注生效,只对已经在spring容器里注册过的bean(无论是通过xml的方式还是通过package sanning的方式)有效!! -->      <!-- <context:annotation-config/> -->    <!-- 除了具有<context:annotation-config/>标签的功能,还可以在指定的package下扫描以及向spring容器注册javabean-->      <context:component-scan base-package="testspring.main">         <!-- 不注册@Controller类型的bean -->       <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller" />  </context:component-scan>   </beans>  

测试类:

@Service  public class Main {      @Autowired      @Qualifier("chinese")      private Man man;        public static void main(String[] args) {          // TODO code application logic here          ApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml");          Main main = (Main) ctx.getBean("main");          System.out.println(main.getMan().sayHello());      }        public Man getMan() {          return man;      }  }  




 

阅读全文
0 0
原创粉丝点击