Interface DataAccessStrategy
- All Superinterfaces:
RelationResolver
- All Known Implementing Classes:
CascadingDataAccessStrategy
,DefaultDataAccessStrategy
,DelegatingDataAccessStrategy
,MyBatisDataAccessStrategy
Abstraction for accesses to the database that should be implementable with a single SQL statement per method and
relates to a single entity as opposed to
JdbcAggregateOperations
which provides interactions related to
complete aggregates.- Author:
- Jens Schauder, Tyler Van Gorder, Milan Milanov, Myeonghyeon Lee, Chirag Tailor, Diego Krupitza
-
Method Summary
Modifier and TypeMethodDescription<T> void
acquireLockAll
(LockMode lockMode, Class<T> domainType) Acquire a lock on all aggregates of the given domain type.<T> void
acquireLockById
(Object id, LockMode lockMode, Class<T> domainType) Acquire a lock on the aggregate specified by id.long
Counts the rows in the table representing the given domain type.<T> long
Counts the rows in the table representing the given probe type, that match the givenquery
.void
Deletes multiple rows identified by the ids, from the table identified by the domainType.void
delete
(Iterable<Object> rootIds, PersistentPropertyPath<RelationalPersistentProperty> propertyPath) Deletes all entities reachable via propertyPath from the instances identified by rootIds.void
Deletes a single row identified by the id, from the table identified by the domainType.void
delete
(Object rootId, PersistentPropertyPath<RelationalPersistentProperty> propertyPath) Deletes all entities reachable via propertyPath from the instance identified by rootId.<T> void
Deletes all entities of the given domain type.void
deleteAll
(PersistentPropertyPath<RelationalPersistentProperty> propertyPath) Deletes all entities reachable via propertyPath from any instance.<T> void
deleteWithVersion
(Object id, Class<T> domainType, Number previousVersion) Deletes a single entity from the database and enforce optimistic record locking using the version property.<T> boolean
Determine whether there is an aggregate of typedomainType
that matches the providedQuery
.<T> boolean
existsById
(Object id, Class<T> domainType) returns if a row with the given id exists for the given type.<T> Iterable<T>
Loads all entities of the given type.<T> Iterable<T>
Loads all entities of the given type, paged and sorted.<T> Iterable<T>
Loads all entities of the given type, sorted.<T> Iterable<T>
Execute aSELECT
query and convert the resulting items to aIterable
.<T> Iterable<T>
Execute aSELECT
query and convert the resulting items to aIterable
.<T> Iterable<T>
findAllById
(Iterable<?> ids, Class<T> domainType) Loads all entities that match one of the ids passed as an argument.findAllByPath
(Identifier identifier, PersistentPropertyPath<? extends RelationalPersistentProperty> path) Finds all entities reachable via path.<T> T
Loads a single entity identified by type and id.<T> Optional<T>
Execute aSELECT
query and convert the resulting item to an entity ensuring exactly one result.<T> Object[]
insert
(List<InsertSubject<T>> insertSubjects, Class<T> domainType, IdValueSource idValueSource) Inserts the data of multiple entities.<T> Object
insert
(T instance, Class<T> domainType, Identifier identifier, IdValueSource idValueSource) Inserts the data of a single entity.<T> boolean
Updates the data of a single entity in the database.<T> boolean
updateWithVersion
(T instance, Class<T> domainType, Number previousVersion) Updates the data of a single entity in the database and enforce optimistic record locking using thepreviousVersion
property.
-
Method Details
-
insert
@Nullable <T> Object insert(T instance, Class<T> domainType, Identifier identifier, IdValueSource idValueSource) Inserts the data of a single entity. Referenced entities don't get handled.- Type Parameters:
T
- the type of the instance.- Parameters:
instance
- the instance to be stored. Must not benull
.domainType
- the type of the instance. Must not benull
.identifier
- information about data that needs to be considered for the insert but which is not part of the entity. Namely, references back to a parent entity and key/index columns for entities that are stored in aMap
orList
.idValueSource
- theIdValueSource
for the insert.- Returns:
- the id generated by the database if any.
- Since:
- 2.4
-
insert
<T> Object[] insert(List<InsertSubject<T>> insertSubjects, Class<T> domainType, IdValueSource idValueSource) Inserts the data of multiple entities.- Type Parameters:
T
- the type of the instance.- Parameters:
insertSubjects
- the subjects to be inserted, where each subject contains the instance and its identifier. Must not benull
.domainType
- the type of the instance. Must not benull
.idValueSource
- theIdValueSource
for the insert.- Returns:
- the ids corresponding to each record that was inserted, if ids were generated. If ids were not generated,
elements will be
null
. - Since:
- 2.4
-
update
Updates the data of a single entity in the database. Referenced entities don't get handled.- Type Parameters:
T
- the type of the instance to save.- Parameters:
instance
- the instance to save. Must not benull
.domainType
- the type of the instance to save. Must not benull
.- Returns:
- whether the update actually updated a row.
-
updateWithVersion
Updates the data of a single entity in the database and enforce optimistic record locking using thepreviousVersion
property. Referenced entities don't get handled.The statement will be of the form :
UPDATE … SET … WHERE ID = :id and VERSION_COLUMN = :previousVersion
and throw an optimistic record locking exception if no rows have been updated.- Type Parameters:
T
- the type of the instance to save.- Parameters:
instance
- the instance to save. Must not benull
.domainType
- the type of the instance to save. Must not benull
.previousVersion
- The previous version assigned to the instance being saved.- Returns:
- whether the update actually updated a row.
- Throws:
OptimisticLockingFailureException
- if the update fails to update at least one row assuming the optimistic locking version check failed.- Since:
- 2.0
-
delete
Deletes a single row identified by the id, from the table identified by the domainType. Does not handle cascading deletes.The statement will be of the form :
DELETE FROM … WHERE ID = :id and VERSION_COLUMN = :version
and throw an optimistic record locking exception if no rows have been updated.- Parameters:
id
- the id of the row to be deleted. Must not benull
.domainType
- the type of entity to be deleted. Implicitly determines the table to operate on. Must not benull
.
-
delete
Deletes multiple rows identified by the ids, from the table identified by the domainType. Does not handle cascading deletes.The statement will be of the form :
DELETE FROM … WHERE ID IN (:ids)
and throw an optimistic record locking exception if no rows have been updated.- Parameters:
ids
- the ids of the rows to be deleted. Must not benull
.domainType
- the type of entity to be deleted. Implicitly determines the table to operate on. Must not benull
.- Since:
- 3.0
-
deleteWithVersion
Deletes a single entity from the database and enforce optimistic record locking using the version property. Does not handle cascading deletes.- Parameters:
id
- the id of the row to be deleted. Must not benull
.domainType
- the type of entity to be deleted. Implicitly determines the table to operate on. Must not benull
.previousVersion
- The previous version assigned to the instance being saved.- Throws:
OptimisticLockingFailureException
- if the update fails to update at least one row assuming the optimistic locking version check failed.- Since:
- 2.0
-
delete
Deletes all entities reachable via propertyPath from the instance identified by rootId.- Parameters:
rootId
- Id of the root object on which the propertyPath is based. Must not benull
.propertyPath
- Leading from the root object to the entities to be deleted. Must not benull
.
-
delete
void delete(Iterable<Object> rootIds, PersistentPropertyPath<RelationalPersistentProperty> propertyPath) Deletes all entities reachable via propertyPath from the instances identified by rootIds.- Parameters:
rootIds
- Ids of the root objects on which the propertyPath is based. Must not benull
or empty.propertyPath
- Leading from the root object to the entities to be deleted. Must not benull
.
-
deleteAll
Deletes all entities of the given domain type.- Type Parameters:
T
- type of the domain type.- Parameters:
domainType
- the domain type for which to delete all entries. Must not benull
.
-
deleteAll
Deletes all entities reachable via propertyPath from any instance.- Parameters:
propertyPath
- Leading from the root object to the entities to be deleted. Must not benull
.
-
acquireLockById
Acquire a lock on the aggregate specified by id.- Parameters:
id
- the id of the entity to load. Must not benull
.lockMode
- the lock mode for select. Must not benull
.domainType
- the domain type of the entity. Must not benull
.
-
acquireLockAll
Acquire a lock on all aggregates of the given domain type.- Parameters:
lockMode
- the lock mode for select. Must not benull
.domainType
- the domain type of the entity. Must not benull
.
-
count
Counts the rows in the table representing the given domain type.- Parameters:
domainType
- the domain type for which to count the elements. Must not benull
.- Returns:
- the count. Guaranteed to be not
null
.
-
count
Counts the rows in the table representing the given probe type, that match the givenquery
.- Parameters:
domainType
- the probe type for which to count the elements. Must not benull
.query
- the query which elements have to match.- Returns:
- the count. Guaranteed to be not
null
. - Since:
- 3.0
-
exists
Determine whether there is an aggregate of typedomainType
that matches the providedQuery
.- Parameters:
query
- must not be null.domainType
- the type of entities. Must not benull
.- Returns:
- true if the object exists.
- Since:
- 3.0
-
existsById
returns if a row with the given id exists for the given type.- Type Parameters:
T
- the type of the entity.- Parameters:
id
- the id of the entity for which to check. Must not benull
.domainType
- the type of the entity to check for. Must not benull
.- Returns:
true
if a matching row exists, otherwisefalse
.
-
findById
Loads a single entity identified by type and id.- Type Parameters:
T
- the type of the entity.- Parameters:
id
- the id of the entity to load. Must not benull
.domainType
- the domain type of the entity. Must not benull
.- Returns:
- Might return
null
.
-
findAll
Loads all entities of the given type.- Type Parameters:
T
- the type of entities to load.- Parameters:
domainType
- the type of entities to load. Must not benull
.- Returns:
- Guaranteed to be not
null
.
-
findAllById
Loads all entities that match one of the ids passed as an argument. It is not guaranteed that the number of ids passed in matches the number of entities returned.- Type Parameters:
T
- type of entities to load.- Parameters:
ids
- the Ids of the entities to load. Must not benull
.domainType
- the type of entities to load. Must not benull
.- Returns:
- the loaded entities. Guaranteed to be not
null
.
-
findAllByPath
Iterable<Object> findAllByPath(Identifier identifier, PersistentPropertyPath<? extends RelationalPersistentProperty> path) Description copied from interface:RelationResolver
Finds all entities reachable via path.- Specified by:
findAllByPath
in interfaceRelationResolver
- Parameters:
identifier
- the combination of Id, map keys and list indexes that identify the parent of the entity to be loaded. Must not be null.path
- the path from the aggregate root to the entities to be resolved. Must not be null.- Returns:
- guaranteed to be not null.
-
findAll
Loads all entities of the given type, sorted.- Type Parameters:
T
- the type of entities to load.- Parameters:
domainType
- the type of entities to load. Must not benull
.sort
- the sorting information. Must not benull
.- Returns:
- Guaranteed to be not
null
. - Since:
- 2.0
-
findAll
Loads all entities of the given type, paged and sorted.- Type Parameters:
T
- the type of entities to load.- Parameters:
domainType
- the type of entities to load. Must not benull
.pageable
- the pagination information. Must not benull
.- Returns:
- Guaranteed to be not
null
. - Since:
- 2.0
-
findOne
Execute aSELECT
query and convert the resulting item to an entity ensuring exactly one result.- Parameters:
query
- must not be null.domainType
- the type of entities. Must not benull
.- Returns:
- exactly one result or
Optional.empty()
if no match found. - Throws:
IncorrectResultSizeDataAccessException
- if more than one match found.- Since:
- 3.0
-
findAll
Execute aSELECT
query and convert the resulting items to aIterable
.- Parameters:
query
- must not be null.domainType
- the type of entities. Must not benull
.- Returns:
- a non-null list with all the matching results.
- Throws:
IncorrectResultSizeDataAccessException
- if more than one match found.- Since:
- 3.0
-
findAll
Execute aSELECT
query and convert the resulting items to aIterable
. Applies thePageable
to the result.- Parameters:
query
- must not be null.domainType
- the type of entities. Must not be null.pageable
- the pagination that should be applied. Must not be null.- Returns:
- a non-null list with all the matching results.
- Throws:
IncorrectResultSizeDataAccessException
- if more than one match found.- Since:
- 3.0
-