当前位置:   article > 正文

springboot采用yml配置整合dubbo2.7版本_dubbo设置节点为消费者yml

dubbo设置节点为消费者yml

1.maven引用dubbo2.7 

  1. <dependency>
  2. <groupId>org.apache.dubbo</groupId>
  3. <artifactId>dubbo-spring-boot-starter</artifactId>
  4. <version>2.7.1</version>
  5. </dependency>
  6. <dependency>
  7. <groupId>org.apache.dubbo</groupId>
  8. <artifactId>dubbo</artifactId>
  9. <version>2.7.1</version>
  10. </dependency>
  11. <dependency>
  12. <groupId>org.apache.dubbo</groupId>
  13. <artifactId>dubbo-dependencies-zookeeper</artifactId>
  14. <version>2.7.1</version>
  15. <type>pom</type>
  16. </dependency>

2.application.yml配置dubbo 注意到:dubbo是一级节点,不要放在spring节点下面。

  1. dubbo:
  2. application: #应用配置,用于配置当前应用信息,不管该应用是提供者还是消费者。
  3. name: robot_provide
  4. registry: #注册中心配置,用于配置连接注册中心相关信息。
  5. address: zookeeper://47.84.225.001:2181
  6. metadata-report:
  7. address: zookeeper://47.84.225.001:2181
  8. protocol: #协议配置,用于配置提供服务的协议信息,协议由提供方指定,消费方被动接受。
  9. name: dubbo
  10. port: 20888
  11. version: 1.0.0
  12. scan:
  13. base-packages: com.kp.robot.service.dubbo #服务暴露与发现消费所在的package

3.服务提供方

注意点:1>@Service引入的是org.apache.dubbo.config.annotation.Service包 。

              2>文件内引用服务最好使用@Autowired。

  1. import org.apache.dubbo.config.annotation.Service;
  2. import org.springframework.beans.factory.annotation.Autowired;
  3. @Service(version = "${dubbo.version}")
  4. public class DubboProvidService implements IManeuverService {
  5. @Autowired
  6. private ManeuverService maneuverService;
  7. /**
  8. * 更新状态
  9. * @param userManeId 用户ID
  10. * @param status 状态 1有效 2无效
  11. * @return
  12. */
  13. @Override
  14. public boolean updateCoinManeStatus(int userManeId, int status) {
  15. return maneuverService.updateCoinManeStatus(userManeId,status) ;
  16. }
  17. }

4.启动入口

  1. package com.kp.robot;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
  4. import org.springframework.boot.autoconfigure.SpringBootApplication;
  5. import org.apache.dubbo.config.spring.context.annotation.EnableDubbo;
  6. @SpringBootApplication
  7. @EnableAutoConfiguration
  8. @EnableDubbo
  9. public class RobotApplication {
  10. public static void main(String[] args) {
  11. SpringApplication.run(RobotApplication.class, args);
  12. }
  13. }

5,消费者 application.yml配置

  1. dubbo:
  2. application: #应用配置,用于配置当前应用信息,不管该应用是提供者还是消费者。
  3. name: robot_provide
  4. registry: #注册中心配置,用于配置连接注册中心相关信息。
  5. address: zookeeper://11.76.235.122:2181
  6. metadata-report:
  7. address: zookeeper://11.76.235.122:2181
  8. protocol: #协议配置,用于配置提供服务的协议信息,协议由提供方指定,消费方被动接受。
  9. name: dubbo
  10. port: 20888
  11. version: 1.0.0

6,消费者代码 @Reference同样是apache.dubbo

  1. package com.robot.web.service.dubbo;
  2. import org.apache.dubbo.config.annotation.Reference;
  3. import org.springframework.stereotype.Service;
  4. import com.robot.interfaces.IManeuverService;
  5. @Service
  6. public class DubboConsumerService{
  7. @Reference(version="${dubbo.version}",check=true,interfaceClass=IManeuverService.class)
  8. private IManeuverService dubboProvidService;
  9. /**
  10. * 更新策略状态
  11. * @param id
  12. * @param status 状态 1有效 2无效
  13. * @return
  14. */
  15. public boolean updateCoinManeStatus(int id,int status){
  16. return dubboProvidService.updateCoinManeStatus(id, status);
  17. }
  18. }

7,消费者启动类 @EnableDubbo

  1. package com.robot;
  2. import org.apache.dubbo.config.spring.context.annotation.EnableDubbo;
  3. import org.springframework.boot.SpringApplication;
  4. import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
  5. import org.springframework.boot.autoconfigure.SpringBootApplication;
  6. @SpringBootApplication
  7. @EnableAutoConfiguration
  8. @EnableDubbo(scanBasePackages="com.robot.web.service.dubbo")
  9. public class RobotApplication {
  10. public static void main(String[] args) {
  11. SpringApplication.run(RobotApplication.class, args);
  12. }
  13. }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/166014
推荐阅读
相关标签
  

闽ICP备14008679号