org.jblabs:spring-message-outbox-parent

Parent Pom for the Spring Message Outbox

License

License

GroupId

GroupId

org.jblabs
ArtifactId

ArtifactId

spring-message-outbox-parent
Last Version

Last Version

0.0.3
Release Date

Release Date

Type

Type

pom
Description

Description

org.jblabs:spring-message-outbox-parent
Parent Pom for the Spring Message Outbox
Project URL

Project URL

https://github.com/jblabs-org/spring-message-outbox
Source Code Management

Source Code Management

http://github.com/jblabs-org/spring-message-outbox/tree/main

Download spring-message-outbox-parent

How to add to project

<!-- https://jarcasting.com/artifacts/org.jblabs/spring-message-outbox-parent/ -->
<dependency>
    <groupId>org.jblabs</groupId>
    <artifactId>spring-message-outbox-parent</artifactId>
    <version>0.0.3</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/org.jblabs/spring-message-outbox-parent/
implementation 'org.jblabs:spring-message-outbox-parent:0.0.3'
// https://jarcasting.com/artifacts/org.jblabs/spring-message-outbox-parent/
implementation ("org.jblabs:spring-message-outbox-parent:0.0.3")
'org.jblabs:spring-message-outbox-parent:pom:0.0.3'
<dependency org="org.jblabs" name="spring-message-outbox-parent" rev="0.0.3">
  <artifact name="spring-message-outbox-parent" type="pom" />
</dependency>
@Grapes(
@Grab(group='org.jblabs', module='spring-message-outbox-parent', version='0.0.3')
)
libraryDependencies += "org.jblabs" % "spring-message-outbox-parent" % "0.0.3"
[org.jblabs/spring-message-outbox-parent "0.0.3"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

  • outbox-core
  • outbox-storage-postgres
  • outbox-publisher-logging
  • outbox-publisher-rabbitmq

Spring Message Outbox Build Maven Central

Coverage Security Rating Vulnerabilities

Spring Message Outbox is a library that implements the outbox pattern for Spring Boot. This library is currently in an ALPHA state and in heavy development. It is not advisable to use this library in production. Contributions or bug reports are welcome.

Usage

  • Add outbox-core as a dependency to your project.
  • Add a storage module as a dependency and import its configuration class into a Spring configuration class using @Import
  • Add a publisher module as a dependency and import its configuration class into a Spring configuration class using @Import
  • Autowire the Outbox class and publish messages using outbox.publish().

Core Module

  • Core Module - Implements the core workflow of the outbox pattern.

Storage Modules

Storage modules implement the OutboxMessageRepository interface and provide persistence for the outbox messages before they are published.

Publisher Modules

Publisher modules implement the OutboxMessagePublisher interface and provide a mechanism to publish outbox messages on a specific message channel.

Versions

Version
0.0.3