https://github.com/neiljbrown/spring-cloud-stream-my-examples
Examples of building message-driven microservices using the Spring Cloud Stream framework.
https://github.com/neiljbrown/spring-cloud-stream-my-examples
messaging rabbitmq spring-cloud-stream
Last synced: 8 months ago
JSON representation
Examples of building message-driven microservices using the Spring Cloud Stream framework.
- Host: GitHub
- URL: https://github.com/neiljbrown/spring-cloud-stream-my-examples
- Owner: neiljbrown
- Created: 2019-12-23T15:58:49.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-12-27T17:21:52.000Z (over 6 years ago)
- Last Synced: 2024-12-30T21:24:07.953Z (over 1 year ago)
- Topics: messaging, rabbitmq, spring-cloud-stream
- Language: Java
- Size: 172 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
Awesome Lists containing this project
README
= Spring Cloud Stream My Examples
:sectlinks:
:sectnums:
:sectnumlevels: 4
:toclevels: 4
This repo contains a collection of my examples of using the Spring Cloud Stream (SCSt) messaging framework to
build message-driven microservices (services that use async messaging APIs to integrate with other services on top of
a shared message broker) in a declarative, broker-agnostic manner.
Each example is implemented as a standalone app or apps(s). The source code for each is contained within a separate
sub-folder within this repo.
A summary of the examples produced to date is provided below.
== Basic examples
This folder contains services which provide basic examples of using core SCSt features.
*basic/logging-consumer* - This project comprises a single service that provides an example of a POJO based message
consumer implemented using SCSt's `@StreamListener` support that consumes messages from a single input message channel deployed
on a RabbitMQ message broker.
End
---