Uses of Interface
org.axonframework.common.jpa.EntityManagerProvider
Packages that use EntityManagerProvider
Package
Description
JPA Implementation of the EventStore.
-
Uses of EntityManagerProvider in org.axonframework.common.jpa
Classes in org.axonframework.common.jpa that implement EntityManagerProviderModifier and TypeClassDescriptionclassSimple implementation of the EntityManagerProvider that returns the EntityManager instance provided at construction time. -
Uses of EntityManagerProvider in org.axonframework.config
Methods in org.axonframework.config with parameters of type EntityManagerProviderModifier and TypeMethodDescriptionstatic ConfigurerDefaultConfigurer.jpaConfiguration(EntityManagerProvider entityManagerProvider) Returns a Configurer instance which has JPA versions of building blocks configured, such as a JPA based Event Store (seeJpaEventStorageEngine), aJpaTokenStoreandJpaSagaStore.static ConfigurerDefaultConfigurer.jpaConfiguration(EntityManagerProvider entityManagerProvider, TransactionManager transactionManager) Returns a Configurer instance which has JPA versions of building blocks configured, such as a JPA based Event Store (seeJpaEventStorageEngine), aJpaTokenStoreandJpaSagaStore.static <A> AggregateConfigurer<A> AggregateConfigurer.jpaMappedConfiguration(Class<A> aggregateType, EntityManagerProvider entityManagerProvider) Creates a Configuration for an aggregate of givenaggregateType, which is mapped to a relational database using an EntityManager provided by givenentityManagerProvider. -
Uses of EntityManagerProvider in org.axonframework.eventhandling.deadletter.jpa
Methods in org.axonframework.eventhandling.deadletter.jpa with parameters of type EntityManagerProviderModifier and TypeMethodDescriptionJpaSequencedDeadLetterQueue.Builder.entityManagerProvider(EntityManagerProvider entityManagerProvider) Sets theEntityManagerProviderwhich provides theEntityManagerused to access the underlying database for thisJpaSequencedDeadLetterQueueimplementation. -
Uses of EntityManagerProvider in org.axonframework.eventhandling.tokenstore.jpa
Methods in org.axonframework.eventhandling.tokenstore.jpa with parameters of type EntityManagerProviderModifier and TypeMethodDescriptionJpaTokenStore.Builder.entityManagerProvider(EntityManagerProvider entityManagerProvider) Sets theEntityManagerProviderwhich provides theEntityManagerused to access the underlying database. -
Uses of EntityManagerProvider in org.axonframework.eventsourcing.eventstore.jpa
Methods in org.axonframework.eventsourcing.eventstore.jpa with parameters of type EntityManagerProviderModifier and TypeMethodDescriptionJpaEventStorageEngine.Builder.entityManagerProvider(EntityManagerProvider entityManagerProvider) Sets theEntityManagerProviderwhich provides theEntityManagerused to access the underlying database for thisEventStorageEngineimplementation. -
Uses of EntityManagerProvider in org.axonframework.modelling.command
Methods in org.axonframework.modelling.command with parameters of type EntityManagerProviderModifier and TypeMethodDescriptionGenericJpaRepository.Builder.entityManagerProvider(EntityManagerProvider entityManagerProvider) Sets theEntityManagerProviderwhich provides theEntityManagerinstance for this repository. -
Uses of EntityManagerProvider in org.axonframework.modelling.saga.repository.jpa
Methods in org.axonframework.modelling.saga.repository.jpa with parameters of type EntityManagerProviderModifier and TypeMethodDescriptionJpaSagaStore.Builder.entityManagerProvider(EntityManagerProvider entityManagerProvider) Sets theEntityManagerProviderwhich provides theEntityManagerused to access the underlying database. -
Uses of EntityManagerProvider in org.axonframework.springboot.autoconfig
Methods in org.axonframework.springboot.autoconfig that return EntityManagerProviderMethods in org.axonframework.springboot.autoconfig with parameters of type EntityManagerProviderModifier and TypeMethodDescriptionJpaAutoConfiguration.deadLetterQueueProviderConfigurerModule(EventProcessorProperties eventProcessorProperties, EntityManagerProvider entityManagerProvider, TransactionManager transactionManager, Serializer genericSerializer, Serializer eventSerializer) JpaEventStoreAutoConfiguration.eventStorageEngine(Serializer defaultSerializer, PersistenceExceptionResolver persistenceExceptionResolver, Serializer eventSerializer, Configuration configuration, EntityManagerProvider entityManagerProvider, TransactionManager transactionManager) JpaAutoConfiguration.sagaStore(Serializer serializer, EntityManagerProvider entityManagerProvider) JpaAutoConfiguration.tokenStore(Serializer serializer, EntityManagerProvider entityManagerProvider) -
Uses of EntityManagerProvider in org.axonframework.springboot.util.jpa
Classes in org.axonframework.springboot.util.jpa that implement EntityManagerProviderModifier and TypeClassDescriptionclassEntityManagerProvider implementation that expects the container to inject the default container managed EntityManager instance.