dubbo整合springboot新手入门教程详解

前言

公司主营业务:网站设计制作、网站制作、移动网站开发等业务。帮助企业客户真正实现互联网宣传,提高企业的竞争能力。创新互联是一支青春激扬、勤奋敬业、活力青春激扬、勤奋敬业、活力澎湃、和谐高效的团队。公司秉承以“开放、自由、严谨、自律”为核心的企业文化,感谢他们对我们的高要求,感谢他们从不同领域给我们带来的挑战,让我们激情的团队有机会用头脑与智慧不断的给客户带来惊喜。创新互联推出皮山免费做网站回馈大家。

目前互联网公司,大部分项目都是基于分布式,一个项目被拆分成几个小项目,这些小项目会分别部署在不同的计算机上面,这个叫做微服务。当一台计算机的程序需要调用另一台计算机代码的时候,就涉及远程调用。此时dubbo就粉末登场了。

搭建工程

dubbo整合springboot新手入门教程详解

dubbo整合springboot新手入门教程详解

dubbo整合springboot新手入门教程详解

idea新建工程后,删除src文件夹,然后在gradle文件中输入

buildscript {
  repositories {
    maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
    mavenCentral()
  }
  dependencies {
    classpath 'org.springframework.boot:spring-boot-gradle-plugin:1.5.21.RELEASE'
  }
}


plugins {
  id 'java'
}
apply plugin: 'org.springframework.boot'
apply plugin: 'war'
group 'com.demoMuty'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8

repositories {
  maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
  mavenCentral()
}

dependencies {
  compile 'org.springframework.boot:spring-boot-starter-mail'
  compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
  compile 'org.springframework.boot:spring-boot-starter-web'
  compile 'org.mybatis.spring.boot:mybatis-spring-boot-starter:1.3.4'
  compile 'com.alibaba.boot:dubbo-spring-boot-starter:0.1.0'
  compile 'com.101tec:zkclient:0.10'
// developmentOnly 'org.springframework.boot:spring-boot-devtools'
  runtime 'MySQL:mysql-connector-java'
  compile("com.baomidou:mybatis-plus-boot-starter:3.1.0")
  compile("com.baomidou:mybatis-plus-generator:3.1.1")
  compileOnly 'org.projectlombok:lombok'
  testCompile 'org.springframework.boot:spring-boot-starter-test'
}

如图所示

dubbo整合springboot新手入门教程详解

boolean作为父工程,然后再见三个模块

dubbo整合springboot新手入门教程详解

booleanone作为父模块 booleanteo作为服务者模块 booleanthree作为消费者模块

添加dubbo.xml

然后在每个模块新建com.test包,在包下新建启动类

dubbo整合springboot新手入门教程详解

@SpringBootApplication
public class BaseApplication extends SpringBootServletInitializer {
}

然后在每个模块的gradle文件中引入上面的依赖,然后在消费者模块和生产者模块的依赖中加入父模块依赖,如图

dubbo整合springboot新手入门教程详解

然后在booleantwo的生产者模块的resource资源文件中加入dubbo文件

<?xml version="1.0" encoding="UTF-8"?>


  
  

  
  

  
  

  
  

在启动类中加入注解

@ImportResource({"classpath:dubbo.xml"})

然后在booleantwo的消费者模块的resource资源文件中加入dubbo文件

<?xml version="1.0" encoding="UTF-8"?>










在启动类中加入注解

@ImportResource({"classpath:dubbo.xml"})

编写dubbo代码

在父模块中写dubbo接口

package com.test1.provider;
/**
 * @author buer
 * create 2019/7/2 22:13
 * description
 */
public interface DemoService {
  String sayHello(String name);
}

然后在生产者模块中写dubbo实现类

package com.test1.dubbo;

import com.test1.provider.DemoService;
import org.springframework.stereotype.Service;

/**
 * @author buer
 * create 2019/7/2 22:14
 * description
 */
@Service("demoService")
public class DemoServiceImpl implements DemoService {
  @Override
  public String sayHello(String name) {
    return "hello,dubbo"+name;
  }
}

然后在消费者模块中写dubbo调用

package com.test1.controller;

import com.test1.provider.DemoService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * @author boolean
 * Date: 2019/7/2 19:48
 * description:
 */
@RestController
public class he {
  @Autowired
  private DemoService demoService;

  @RequestMapping("/he")
  public String hello(){
    return "he";
  }

  @RequestMapping("/chen")
  public String hello1(){
    return demoService.sayHello("chen");
  }
}

启动

最后添加war包

dubbo整合springboot新手入门教程详解

打开zkServer.cmd

dubbo整合springboot新手入门教程详解

启动信息

dubbo整合springboot新手入门教程详解

如果启动有乱码的话

回到idea软件 打开tomcat的设置 找到VM options:,然后输入

-Dfile.encoding=UTF-8

测试

dubbo整合springboot新手入门教程详解

代码地址:

https://github.com/blackdogss/HelloWorld.git

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持创新互联。


新闻标题:dubbo整合springboot新手入门教程详解
分享URL:http://scyanting.com/article/pscsoh.html