| Interface | Description |
|---|---|
| DataAccessStrategy |
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. |
| JdbcAggregateOperations |
Specifies a operations one can perform on a database, based on an Domain Type.
|
| Class | Description |
|---|---|
| CascadingDataAccessStrategy |
Delegates each methods to the
DataAccessStrategys passed to the constructor in turn until the first that does
not throw an exception. |
| DefaultDataAccessStrategy |
The default
DataAccessStrategy is to generate SQL statements based on meta data from the entity. |
| DelegatingDataAccessStrategy |
Delegates all method calls to an instance set after construction.
|
| EntityRowMapper<T> |
Maps a
ResultSet to an entity of type T, including entities referenced. |
| JdbcAggregateTemplate |
JdbcAggregateOperations implementation, storing aggregates in and obtaining them from a JDBC data store. |
| SqlGeneratorSource |
Provides
SqlGenerators per domain type. |
| Exception | Description |
|---|---|
| UnableToSetId |
Signals failure to set the id property of an entity.
|
Copyright © 2017–2019 Pivotal Software, Inc.. All rights reserved.