Skip to content

Latest commit

 

History

History
49 lines (38 loc) · 1.6 KB

README.md

File metadata and controls

49 lines (38 loc) · 1.6 KB
  ____  ____ _____   ____                 _                                  _   
 / ___||  _ \_   _| |  _ \  _____   _____| | ___  _ __  _ __ ___   ___ _ __ | |_ 
 \___ \| |_) || |   | | | |/ _ \ \ / / _ \ |/ _ \| '_ \| '_ ` _ \ / _ \ '_ \| __|
  ___) |  __/ | |   | |_| |  __/\ V /  __/ | (_) | |_) | | | | | |  __/ | | | |_ 
 |____/|_|    |_|   |____/ \___| \_/ \___|_|\___/| .__/|_| |_| |_|\___|_| |_|\__|
                                                 |_|                                           
 cid-jms-spring------------------------------------------------------------------

build_status

Library for integrating 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 starter to your project's pom.

@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:

$ ./mvnw clean install

Release

To build a release and upload to Maven Central push to main.