Uses of Class
org.springframework.integration.jpa.dsl.JpaUpdatingOutboundEndpointSpec
Package
Description
Provides JPA Components support for Java DSL.
-
Uses of JpaUpdatingOutboundEndpointSpec in org.springframework.integration.jpa.dsl
Modifier and TypeMethodDescriptionJpaUpdatingOutboundEndpointSpec.clearOnFlush
(boolean clearOnFlush) If set totrue
theEntityManager.clear()
will be called, and only if theEntityManager.flush()
was called after performing persistence operations.JpaUpdatingOutboundEndpointSpec.flush
(boolean flush) If set totrue
theEntityManager.flush()
will be called after persistence operation.JpaUpdatingOutboundEndpointSpec.flushSize
(int flushSize) If the provided value is greater than0
, thenEntityManager.flush()
will be called after persistence operations as well as within batch operations.Jpa.outboundAdapter
(EntityManager entityManager) Create aJpaUpdatingOutboundEndpointSpec
builder instance for one-way adapter based on the providedEntityManager
.Jpa.outboundAdapter
(EntityManagerFactory entityManagerFactory) Create aJpaUpdatingOutboundEndpointSpec
builder instance for one-way adapter based on the providedEntityManagerFactory
.Jpa.outboundAdapter
(JpaOperations jpaOperations) Create aJpaUpdatingOutboundEndpointSpec
builder instance for one-way adapter based on the providedJpaOperations
.JpaUpdatingOutboundEndpointSpec.persistMode
(PersistMode persistMode) Specify aPersistMode
for the gateway.protected JpaUpdatingOutboundEndpointSpec
JpaUpdatingOutboundEndpointSpec.producesReply
(boolean producesReply) Jpa.updatingGateway
(EntityManager entityManager) Create aJpaUpdatingOutboundEndpointSpec
builder instance for request-reply gateway based on the providedEntityManager
.Jpa.updatingGateway
(EntityManagerFactory entityManagerFactory) Create aJpaUpdatingOutboundEndpointSpec
builder instance for request-reply gateway based on the providedEntityManagerFactory
.Jpa.updatingGateway
(JpaOperations jpaOperations) Create aJpaUpdatingOutboundEndpointSpec
builder instance for request-reply gateway based on the providedJpaOperations
.