Package | Description |
---|---|
org.springframework.data.jdbc.core |
Core JDBC implementation.
|
org.springframework.data.jdbc.core.convert |
JDBC-specific conversion classes.
|
org.springframework.data.jdbc.mybatis | |
org.springframework.data.relational.domain |
Modifier and Type | Method and Description |
---|---|
Identifier |
JdbcIdentifierBuilder.build() |
Modifier and Type | Method and Description |
---|---|
Iterable<Object> |
CascadingDataAccessStrategy.findAllByPath(Identifier identifier,
PersistentPropertyPath<RelationalPersistentProperty> path) |
Iterable<Object> |
DelegatingDataAccessStrategy.findAllByPath(Identifier identifier,
PersistentPropertyPath<RelationalPersistentProperty> path) |
Iterable<Object> |
DefaultDataAccessStrategy.findAllByPath(Identifier identifier,
PersistentPropertyPath<RelationalPersistentProperty> propertyPath) |
default Iterable<Object> |
DataAccessStrategy.findAllByPath(Identifier identifier,
PersistentPropertyPath<RelationalPersistentProperty> path) |
Iterable<Object> |
RelationResolver.findAllByPath(Identifier identifier,
PersistentPropertyPath<RelationalPersistentProperty> path)
Finds all entities reachable via path.
|
<T> Object |
CascadingDataAccessStrategy.insert(T instance,
Class<T> domainType,
Identifier identifier) |
<T> Object |
DelegatingDataAccessStrategy.insert(T instance,
Class<T> domainType,
Identifier identifier) |
<T> Object |
DefaultDataAccessStrategy.insert(T instance,
Class<T> domainType,
Identifier identifier) |
default <T> Object |
DataAccessStrategy.insert(T instance,
Class<T> domainType,
Identifier identifier)
Inserts a the data of a single entity.
|
<T> T |
JdbcConverter.mapRow(PersistentPropertyPathExtension path,
ResultSet resultSet,
Identifier identifier,
Object key)
|
<T> T |
BasicJdbcConverter.mapRow(PersistentPropertyPathExtension path,
ResultSet resultSet,
Identifier identifier,
Object key) |
Constructor and Description |
---|
EntityRowMapper(PersistentPropertyPathExtension path,
JdbcConverter converter,
Identifier identifier) |
Modifier and Type | Method and Description |
---|---|
Identifier |
MyBatisContext.getIdentifier()
The
Identifier for a path to query. |
Modifier and Type | Method and Description |
---|---|
Iterable<Object> |
MyBatisDataAccessStrategy.findAllByPath(Identifier identifier,
PersistentPropertyPath<RelationalPersistentProperty> path) |
<T> Object |
MyBatisDataAccessStrategy.insert(T instance,
Class<T> domainType,
Identifier identifier) |
Constructor and Description |
---|
MyBatisContext(Identifier identifier,
Object instance,
Class<?> domainType) |
Modifier and Type | Method and Description |
---|---|
static Identifier |
Identifier.empty()
Returns an empty
Identifier . |
static Identifier |
Identifier.from(Map<String,Object> map)
Creates an
Identifier from a Map of name to value tuples. |
static Identifier |
Identifier.of(String name,
Object value,
Class<?> targetType)
|
Identifier |
Identifier.withPart(String name,
Object value,
Class<?> targetType)
Creates a new
Identifier from the current instance and sets the value for key . |
Copyright © 2017–2020 Pivotal Software, Inc.. All rights reserved.