Package | Description |
---|---|
org.springframework.integration.jpa.core |
Provides core classes of the JPA module.
|
org.springframework.integration.jpa.support.parametersource |
Provides generic support for ParameterSources and ParameterSource Factories.
|
Modifier and Type | Method and Description |
---|---|
protected List<?> |
JpaExecutor.doPoll(ParameterSource jpaQLParameterSource,
int firstResult,
int maxNumberOfResults) |
int |
JpaOperations.executeUpdate(String updateQuery,
ParameterSource source)
Executes the given update statement and uses the given parameter source to
set the required query parameters.
|
int |
DefaultJpaOperations.executeUpdate(String updateQuery,
ParameterSource source) |
int |
JpaOperations.executeUpdateWithNamedQuery(String updateQuery,
ParameterSource source) |
int |
DefaultJpaOperations.executeUpdateWithNamedQuery(String updateQuery,
ParameterSource source) |
int |
JpaOperations.executeUpdateWithNativeQuery(String updateQuery,
ParameterSource source) |
int |
DefaultJpaOperations.executeUpdateWithNativeQuery(String updateQuery,
ParameterSource source) |
List<?> |
JpaOperations.getResultListForNamedQuery(String selectNamedQuery,
ParameterSource jpaQLParameterSource,
int firstResult,
int maxNumberOfResults) |
List<?> |
DefaultJpaOperations.getResultListForNamedQuery(String selectNamedQuery,
ParameterSource parameterSource,
int firstResult,
int maxNumberOfResults) |
List<?> |
JpaOperations.getResultListForNativeQuery(String selectQuery,
Class<?> entityClass,
ParameterSource jpaQLParameterSource,
int firstResult,
int maxNumberOfResults) |
List<?> |
DefaultJpaOperations.getResultListForNativeQuery(String selectQuery,
Class<?> entityClass,
ParameterSource parameterSource,
int firstResult,
int maxNumberOfResults) |
List<?> |
JpaOperations.getResultListForQuery(String query,
ParameterSource source)
Executes the provided query to return a list of results
|
List<?> |
DefaultJpaOperations.getResultListForQuery(String query,
ParameterSource source) |
List<?> |
JpaOperations.getResultListForQuery(String query,
ParameterSource source,
int firstResult,
int maxNumberOfResults)
Executes the provided query to return a list of results.
|
List<?> |
DefaultJpaOperations.getResultListForQuery(String queryString,
ParameterSource source,
int firstResult,
int maxNumberOfResults) |
Object |
JpaOperations.getSingleResultForQuery(String query,
ParameterSource source)
Executes the provided query to return a single element
|
Object |
DefaultJpaOperations.getSingleResultForQuery(String queryString,
ParameterSource source) |
void |
JpaExecutor.setParameterSource(ParameterSource parameterSource)
Specifies the
ParameterSource that would be used to provide
additional parameters. |
Modifier and Type | Interface and Description |
---|---|
interface |
PositionSupportingParameterSource |
Modifier and Type | Class and Description |
---|---|
class |
BeanPropertyParameterSource |
Modifier and Type | Method and Description |
---|---|
ParameterSource |
BeanPropertyParameterSourceFactory.createParameterSource(Object input) |
ParameterSource |
ParameterSourceFactory.createParameterSource(Object input)
Return a new
ParameterSource . |
Copyright © 2016. All rights reserved.