Axon without Event Source and without Event Store

Hi All,

I’m using Axon without Event Source using the GenericJpaRepository.

I’m wondering how to disable Event Store functionality so that I don’t need to create the DomainEventEntry table?

Kind regards,

Denis

Hi Denis,

I assume you’re using Spring Boot? You can disable the Event Store by specifying an Event Bus bean in your context explicitly. Axon will only set up an Event Store (or Bus) if none is already defined.

Cheers,

Allard

Hi Allard,

Thanks! That did the trick.

Your assumption was correct. I am using Spring Boot where I am utilizing Axon’s command and event functionality, and I don’t need the event replaying or audit functionality.

Kind regards,

Denis