org.jblabs:outbox-storage-postgres

Outbox message storage implementation using the PostgreSQL database.

Лицензия

Лицензия

Группа

Группа

org.jblabs
Идентификатор

Идентификатор

outbox-storage-postgres
Последняя версия

Последняя версия

0.0.3
Дата

Дата

Тип

Тип

jar
Описание

Описание

org.jblabs:outbox-storage-postgres
Outbox message storage implementation using the PostgreSQL database.
Ссылка на сайт

Ссылка на сайт

https://github.com/jblabs-org/spring-message-outbox
Система контроля версий

Система контроля версий

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

Скачать outbox-storage-postgres

Как подключить последнюю версию

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

Зависимости

compile (2)

Идентификатор библиотеки Тип Версия
org.springframework.boot : spring-boot-starter-jdbc jar 2.4.0
org.jblabs : outbox-core jar 0.0.3

provided (1)

Идентификатор библиотеки Тип Версия
org.projectlombok : lombok jar 1.18.16

test (4)

Идентификатор библиотеки Тип Версия
org.springframework.boot : spring-boot-starter-test jar 2.4.0
org.postgresql : postgresql jar 42.2.18
io.zonky.test : embedded-database-spring-test jar 1.6.3
org.flywaydb.flyway-test-extensions : flyway-spring-test jar 7.0.0

Модули Проекта

Данный проект не имеет модулей.

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.

Версии библиотеки

Версия
0.0.3
0.0.1