微服务技术(SpringCloud、Docker、RabbitMQ)

微服务是一种架构风格,它将单一应用程序拆分成一组小的服务,每个服务运行在自己的进程中,服务之间通过轻量级的通信机制互相协作。Spring Cloud 是一个提供工具支持以微服务架构方式快速构建系统的编程模型,它集成了诸如 Netflix Eureka 用于服务发现、Netflix Hystrix 用于服务容错、Netflix Zuul 用于 API 路由等一系列的服务管理功能。

Docker 是一个应用容器引擎,它允许你打包应用及其依赖到一个容器中,然后在任何支持 Docker 的机器上运行。

RabbitMQ 是一个开源的消息代理和队列服务器,用于接收和转发消息,可以在微服务间提供异步通信。

以下是一个简单的例子,展示如何使用 Spring Cloud 和 Docker 创建微服务,并使用 RabbitMQ 进行服务间通信。

  1. 创建一个服务提供者(provider),使用 Spring Cloud 和 RabbitMQ:



@SpringBootApplication
@EnableEurekaClient
public class ProviderApplication {
 
    public static void main(String[] args) {
        SpringApplication.run(ProviderApplication.class, args);
    }
 
    @RestController
    public class ProviderController {
 
        @Autowired
        private RabbitTemplate rabbitTemplate;
 
        @GetMapping("/sendMessage")
        public String sendMessage() {
            rabbitTemplate.convertAndSend("exchange", "routingKey", "Hello, Consumer!");
            return "Message sent";
        }
    }
}
  1. 创建一个服务消费者(consumer),使用 Spring Cloud 和 RabbitMQ:



@SpringBootApplication
@EnableEurekaClient
public class ConsumerApplication {
 
    public static void main(String[] args) {
        SpringApplication.run(ConsumerApplication.class, args);
    }
 
    @Component
    public class ConsumerReceiver {
 
        @RabbitListener(queues = "queue")
        public void receiveMessage(String content) {
            System.out.println("Received <" + content + ">");
        }
    }
}
  1. 使用 Docker 容器化你的应用:

创建 Dockerfile 为每个服务:

Provider 服务的 Dockerfile:




FROM openjdk:8-jdk-alpine
VOLUME /tmp
ADD target/provider-0.0.1-SNAPSHOT.jar app.jar
ENTRYPOINT ["java","-Djava.security.egd=file:/dev/./urandom","-jar","/app.jar"]

Consumer 服务的 Dockerfile:




FROM openjdk:8-jdk-alpine
VOLUME /tmp
ADD target/consumer-0.0.1-SNAPSHOT.jar app.jar
ENTRYPOINT ["java","-Djava.security.egd=file:/dev/./urandom","-jar","/app.jar"]
  1. 使用 Docker Compose 来定义和运行多个容器:



version: '3'
services:
  provider:
    build: ./provider
    ports:
      - "8080:8080"
    depends_on:
      - rabbitmq
 
  consumer:
    build: ./consumer
    depends_on:
      - rabbitmq
 
  rabbitmq:
 

评论已关闭

推荐阅读

Vue中使用mind-map实现在线思维导图
2024年08月04日
VUE
Web前端最全Vue实现免密登录跳转的方式_vue怎么样不登录返回首页,最强技术实现
2024年08月04日
VUE
vue3 项目搭建教程(基于create-vue,vite,Vite + Vue)
2024年08月04日
VUE
Vue-颜色选择器实现方案——>Vue-Color( 实战*1+ Demo*7)
2024年08月04日
VUE
Vue项目卡顿慢加载?这些优化技巧告诉你!_vue数据多渲染卡顿
2024年08月04日
VUE
vue中的keep-alive详解与应用场景
2024年08月04日
VUE
Vue、React实现excel导出功能(三种实现方式保姆级讲解)
2024年08月04日
vue-office/docx插件实现docx文件预览
2024年08月04日
VUE
java调用js文件的两种方法(支持V8引擎)
2024年08月04日
JavaScript:解决计算精度问题/mathjs/bignumber.js/big.js/decimal.js
2024年08月04日
两周从爬虫小白变大神 _yjs_js_security_passport
2024年08月04日
JS笔记(对象、函数、数组)
2024年08月04日
Markdown.js:强大的纯JavaScript Markdown解析器
2024年08月04日
Vue项目:js模拟点击a标签下载文件并重命名,URL文件地址下载方法、请求接口下载文件方法总结。
2024年08月04日
vue 父组件怎么获取子组件里面的data数据
2024年08月04日
VUE
个人开发实现AI套壳网站快速搭建(Vue+elementUI+SpringBoot)
2024年08月04日
el-table 表格封装并改造实现单元格可编辑
2024年08月04日
none
nodejs环境下创建vue项目、SSH密钥登陆!!!
2024年08月04日
vue+quill+element-ui实现视频、图片上传及缩放保姆级教程,轻松使用富文本
2024年08月04日
【three.js】22. Imported Models导入模型
2024年08月04日