Module spring.data.jdbc
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, Sergey Korotaev
-
Method Summary
Modifier and TypeMethodDescription<T> voidacquireLockAll(org.springframework.data.relational.core.sql.LockMode lockMode, Class<T> domainType) Acquire a lock on all aggregates of the given domain type.<T> voidacquireLockById(Object id, org.springframework.data.relational.core.sql.LockMode lockMode, Class<T> domainType) Acquire a lock on the aggregate specified by id.longCounts the rows in the table representing the given domain type.<T> longCounts the rows in the table representing the given probe type, that match the givenquery.voidDeletes multiple rows identified by the ids, from the table identified by the domainType.voiddelete(Iterable<Object> rootIds, PersistentPropertyPath<org.springframework.data.relational.core.mapping.RelationalPersistentProperty> propertyPath) Deletes all entities reachable via propertyPath from the instances identified by rootIds.voidDeletes a single row identified by the id, from the table identified by the domainType.voiddelete(Object rootId, PersistentPropertyPath<org.springframework.data.relational.core.mapping.RelationalPersistentProperty> propertyPath) Deletes all entities reachable via propertyPath from the instance identified by rootId.<T> voidDeletes all entities of the given domain type.voiddeleteAll(PersistentPropertyPath<org.springframework.data.relational.core.mapping.RelationalPersistentProperty> propertyPath) Deletes all entities reachable via propertyPath from any instance.<T> voiddeleteWithVersion(Object id, Class<T> domainType, Number previousVersion) Deletes a single entity from the database and enforce optimistic record locking using the version property.<T> booleanDetermine whether there is an aggregate of typedomainTypethat matches the providedQuery.<T> booleanexistsById(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 aSELECTquery and convert the resulting items to aIterable.<T> Iterable<T>findAll(org.springframework.data.relational.core.query.Query query, Class<T> domainType, Pageable pageable) Execute aSELECTquery 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 org.springframework.data.relational.core.mapping.RelationalPersistentProperty> path) Finds all entities reachable via path.<T> TLoads a single entity identified by type and id.<T> Optional<T>Execute aSELECTquery and convert the resulting item to an entity ensuring exactly one result.<T> Object[]insert(List<InsertSubject<T>> insertSubjects, Class<T> domainType, org.springframework.data.relational.core.conversion.IdValueSource idValueSource) Inserts the data of multiple entities.<T> Objectinsert(T instance, Class<T> domainType, Identifier identifier, org.springframework.data.relational.core.conversion.IdValueSource idValueSource) Inserts the data of a single entity.<T> Stream<T>Loads all entities of the given type to aStream.<T> Stream<T>Loads all entities of the given type to aStream, sorted.<T> Stream<T>Execute aSELECTquery and convert the resulting items to aStream.<T> Stream<T>streamAllByIds(Iterable<?> ids, Class<T> domainType) Loads all entities that match one of the ids passed as an argument to aStream.<T> booleanUpdates the data of a single entity in the database.<T> booleanupdateWithVersion(T instance, Class<T> domainType, Number previousVersion) Updates the data of a single entity in the database and enforce optimistic record locking using thepreviousVersionproperty.
-
Method Details
-
insert
@Nullable <T> Object insert(T instance, Class<T> domainType, Identifier identifier, org.springframework.data.relational.core.conversion.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 aMaporList.idValueSource- theIdValueSourcefor 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, org.springframework.data.relational.core.conversion.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- theIdValueSourcefor 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 thepreviousVersionproperty. Referenced entities don't get handled.The statement will be of the form :
UPDATE … SET … WHERE ID = :id and VERSION_COLUMN = :previousVersionand 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 = :versionand 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
void delete(Object rootId, PersistentPropertyPath<org.springframework.data.relational.core.mapping.RelationalPersistentProperty> propertyPath) 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<org.springframework.data.relational.core.mapping.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 benullor 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
void deleteAll(PersistentPropertyPath<org.springframework.data.relational.core.mapping.RelationalPersistentProperty> propertyPath) 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
<T> void acquireLockById(Object id, org.springframework.data.relational.core.sql.LockMode lockMode, Class<T> domainType) 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
<T> void acquireLockAll(org.springframework.data.relational.core.sql.LockMode lockMode, Class<T> domainType) 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 typedomainTypethat 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:
trueif 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.
-
streamAll
Loads all entities of the given type to aStream.- 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.
-
streamAllByIds
Loads all entities that match one of the ids passed as an argument to aStream. 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 org.springframework.data.relational.core.mapping.RelationalPersistentProperty> path) Description copied from interface:RelationResolverFinds all entities reachable via path.- Specified by:
findAllByPathin 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
-
streamAll
Loads all entities of the given type to aStream, 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
<T> Optional<T> findOne(org.springframework.data.relational.core.query.Query query, Class<T> domainType) Execute aSELECTquery 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
<T> Iterable<T> findAll(org.springframework.data.relational.core.query.Query query, Class<T> domainType) Execute aSELECTquery 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
-
streamAll
<T> Stream<T> streamAll(org.springframework.data.relational.core.query.Query query, Class<T> domainType) Execute aSELECTquery and convert the resulting items to aStream.- 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
<T> Iterable<T> findAll(org.springframework.data.relational.core.query.Query query, Class<T> domainType, Pageable pageable) Execute aSELECTquery and convert the resulting items to aIterable. Applies thePageableto 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
-