Skip to main content

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.

Overview

Atoti Limits lets you extend the CRUD services. To do this, you need to import your implementation of the appropriate CRUD service and mark it as primary. See Importing Spring Beans into the Project for details on how to do this. Your implementation(s) must meet the requirements outlined below.

Requirements

ServiceDescriptionRequiredReason
IPreferredLimitsAppCrudServiceThe CRUD service used throughout Atoti LimitsYesThis service powers the REST services used by the Atoti Limits UI.
ILimitsAppDatastoreCrudServiceThe CRUD service used to interact with the Atoti DatastoreYesThis service powers the Atoti Limits cube.
ILimitsAppJpaDatabaseCrudServiceThe persistent CRUD service used to interact with an external databaseNoN/A
To meet all requirements, you may have one CRUD service that extends both ILimitsAppDatastoreCrudService and IPreferredLimitsAppCrudService.