springboot整合dubbo-服务化最佳实践

Posted 简单笔记

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot整合dubbo-服务化最佳实践相关的知识,希望对你有一定的参考价值。

分包:公共的模型、接口、异常都放在此处(springboot-interface-api)

将springboot-meeting-service、springboot-user-service系统pojo和service提取到springboot-interface-api

1.分包——新建普通maven项目

 

 

 

 

 

 

springboot-interface-api(pom.xml)

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

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>com.xt</groupId>
  <artifactId>springboot-interface-api</artifactId>
  <version>0.0.1-SNAPSHOT</version>

  <name>springboot-interface-api</name>
  <!-- FIXME change it to the project\'s website -->
  <url>http://www.example.com</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
  </properties>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.projectlombok</groupId>
      <artifactId>lombok</artifactId>
      <version>1.18.20</version>
    </dependency>

  </dependencies>

</project>

  

 

以上是关于springboot整合dubbo-服务化最佳实践的主要内容,如果未能解决你的问题,请参考以下文章

Springboot+dubbo+zookeeper整合

Springboot与Mybatis整合最佳实践

springboot整合dubbo

Springboot整合Dubbo和Zookeeper

SpringBoot-整合Dubbo+Zookeeper

Dubbo专栏:SpringBoot整合Dubbo服务降级与豪猪断路器一