Migration notes 1.2
This page explains the changes required to migrate to the stated version of the Atoti Market Data.
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-starter
module have been moved to a newmarket-data-config
module, enabling their use without auto-configuration.
Market Data Config
This release includes a new Market Data Config module, and the market-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:
<dependency>
<groupId>com.activeviam.apps.market-data</groupId>
<artifactId>market-data-config</artifactId>
<version>1.2.0</version>
</dependency>
note
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.