This page explains the changes required to migrate to the stated version of the Atoti Market Data.Documentation Index
Fetch the complete documentation index at: https://docs.activeviam.com/llms.txt
Use this file to discover all available pages before exploring further.
Migrate to 1.2.0
Upgrading from Atoti Market Data 1.1.2 - See Atoti Market Data 1.2.0 Release Notes.Summary
- Introduce configuration module : All classes previously in the
market-data-spring-boot-startermodule have been moved to a newmarket-data-configmodule, enabling their use without auto-configuration.
Market Data Config
This release includes a new Market Data Config module, and themarket-data-config artifact. This new module contains all the classes previously in the Market Data Spring Boot Starter module, such as Configuration Properties classes, retrieval and interpolation configuration, and post-processor injection. Unlike the Spring Boot Starter, this module does not carry out any auto-configuration. As a result you can now use or import these classes in isolation. The Spring Boot Starter module remains available, and if you add this to your project, the same beans will be auto-configured as before.
To use the new module, add the following to your pom.xml file:
If you have imported any classes from the Market Data Spring Boot Starter in your project, the package for these has changed from
com.activeviam.marketdata.autoconfigure... to com.activeviam.marketdata.config.... Please update your imports accordingly after upgrading.