com.alibaba.dubbo.config.annotation.Service和org.springframework.stereotype.Service两种@Service的区别

org.springframework.stereotype.Service

属于Spring
作用:只是用来表示此类是业务层组件

spring配置文件:


常用的作用在类上的注解,还有以下几种:

    @Controller
    用于标注控制层组件(如Struts的action,springMVC的controller)
    @Service
    用于标注业务层组件,主要进行业务的处理(通常定义在servic层)
    @Repository
    用于标注数据访问层组件
    @Component
    用于标注泛指组件,当我们不知道某类属于哪类时(不属于@Controller、@Services等时),就可以标注为@Componet

以上所有的的作用在类上的注解,归根到底,都是讲注解的类纳入到spring容器进行管理,之所以名字不同,只是表示组件的名称不同,就如世上所有的人都有名字(注解名),但他们都是人(标识为组件,放到spring容器)

 

com.alibaba.dubbo.config.annotation.Service

属于dubbo

作用:是dubbo用来声明provider的注解(即声明该类是服务的提供者的注解)

spring配置文件:


 






 

服务的提供者

如果你的程序是分布式程序,且使用的dubbo实现的RPC,可以有两种配置:

1.使用spring的@Service

必须在spring配置文件中非注解的方式显示暴露一下服务接口,存在的弊端:如果有好多服务提供者,要在spring配置文件中写好多dubbo:service,配置如下:








 

第二种:使用alibaba的dubbo的@Service
此时就不需要在spring配置文件中显示声明要暴露的服务接口了,spring配置文件中省去好多dubbo:service,配置如下:







 

 

 

服务的消费者

 

dubbo注解

第一种:使用@Reference引用服务
spring配置文件如下:




   

Controller类上面使用@Reference表明我要引用的服务


import com.alibaba.dubbo.config.annotation.Reference;

@Reference
private ItemService itemService;
 

第二种:使用autowired注解

spring配置文件:




    

Controller类上面使用@Autowired表明我要引用的服务

import org.springframework.beans.factory.annotation.Autowired;

@Autowired
private ItemService itemService;

这样写不推荐,因为有一下两点

1、当你配置的引用的服务没有提供者是,编译阶段就会出错,因为@Autowired默认的去找bean,没有找到对应的bean,就去你引用的dubbo服务中去找,但是这是没有提供者,即没有这个真正的类,所以编译就报错了;而用alibaba的@Service只是一个引用,它能找到这个引用,但是如果没有提供者,也会报错ERROR,显示No Provider没有提供者,但是能编译过去项目能正常运行
2、如果引用的dubbo服务非常多的话,spring配置文件要写好多的dubbo:reference

 

最后,谢谢老哥的文章:https://blog.csdn.net/wrs120/article/details/80468174

你可能感兴趣的:(com.alibaba.dubbo.config.annotation.Service和org.springframework.stereotype.Service两种@Service的区别)