The OpenWMS.org Preferences Service deals with configuration and preferences for the whole application. It can be used to store configuration parameters in different validity scopes. Scopes can be merged and inherited. Preferences might be stored only valid for a particular User or a specific Role, specific to a Module (aka microservice) or the whole Application.
This library contains the essential functionality of the Preferences Service and is built with Spring Boot 4.1 on Java 25. It is not a standalone microservice: it is embedded into the OpenWMS.org Preferences Service that is distributed as a Docker image.
A JDK 25 and Maven 3.9+ are required to build. Build the library with all unit and in-memory database integration tests but without a required RabbitMQ server:
./mvnw package
To also run the tests against a RabbitMQ instance, running locally with default settings, activate the AMQP profile:
./mvnw package -DsurefireArgs=-Dspring.profiles.active=AMQP,TEST
Find further Documentation on Microservice Website or in the Wiki