org.jblabs:outbox-publisher-logging

Outbox message publisher implementation that logs messages instead of publishing them.

License

License

Categories

Categories

Logging Application Layer Libs
GroupId

GroupId

org.jblabs
ArtifactId

ArtifactId

outbox-publisher-logging
Last Version

Last Version

0.0.3
Release Date

Release Date

Type

Type

jar
Description

Description

org.jblabs:outbox-publisher-logging
Outbox message publisher implementation that logs messages instead of publishing them.
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 outbox-publisher-logging

How to add to project

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

Dependencies

compile (1)

Group / Artifact Type Version
org.jblabs : outbox-core jar 0.0.3

provided (1)

Group / Artifact Type Version
org.projectlombok : lombok jar 1.18.16

test (1)

Group / Artifact Type Version
org.springframework.boot : spring-boot-starter-test jar 2.4.0

Project Modules

There are no modules declared in this project.

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
0.0.1