Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/spt-development/spt-development-cid-jms-spring
Library for integrating spt-development/spt-development-cid into a Spring JMS (listener) project.
https://github.com/spt-development/spt-development-cid-jms-spring
correlation microservices spring-jms
Last synced: about 2 months ago
JSON representation
Library for integrating spt-development/spt-development-cid into a Spring JMS (listener) project.
- Host: GitHub
- URL: https://github.com/spt-development/spt-development-cid-jms-spring
- Owner: spt-development
- License: apache-2.0
- Created: 2021-02-10T20:30:36.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-09-15T11:28:18.000Z (3 months ago)
- Last Synced: 2024-09-16T13:18:08.517Z (3 months ago)
- Topics: correlation, microservices, spring-jms
- Language: Java
- Homepage: https://github.com/spt-development/spt-development-cid-jms-spring
- Size: 140 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
````
____ ____ _____ ____ _ _
/ ___|| _ \_ _| | _ \ _____ _____| | ___ _ __ _ __ ___ ___ _ __ | |_
\___ \| |_) || | | | | |/ _ \ \ / / _ \ |/ _ \| '_ \| '_ ` _ \ / _ \ '_ \| __|
___) | __/ | | | |_| | __/\ V / __/ | (_) | |_) | | | | | | __/ | | | |_
|____/|_| |_| |____/ \___| \_/ \___|_|\___/| .__/|_| |_| |_|\___|_| |_|\__|
|_|
cid-jms-spring------------------------------------------------------------------
````[![build_status](https://github.com/spt-development/spt-development-cid-jms-spring/actions/workflows/build.yml/badge.svg)](https://github.com/spt-development/spt-development-cid-jms-spring/actions)
Library for integrating [spt-development/spt-development-cid](https://github.com/spt-development/spt-development-cid)
into a Spring JMS (listener) project.Usage
=====Register the aspects as a Spring Beans manually or by adding the
[spt-development/spt-development-cid-jms-spring-boot](https://github.com/spt-development/spt-development-cid-jms-spring-boot)
starter to your project's pom.```java
@Bean
@Order(0)
public CorrelationIdSetter correlationIdSetter() {
return new CorrelationIdSetter();
}@Bean
@Order(1)
public MdcCorrelationIdPutter mdcCorrelationIdPutter() {
return new MdcCorrelationIdPutter();
}
```Building locally
================To build the library, run the following maven command:
```shell
$ ./mvnw clean install
```Release
=======To build a release and upload to Maven Central push to `main`.