I set up a simple bank application (Account/Deposit/Withdraw) with Spring boot 2.0.3, kotlin 1.2.51 and axon 3.3.1, you can find it here: https://github.com/holisticon/holi-bank
Everything works fine, love the new QuerySubscription feature in combination with webflux!
But:
when I change the serializer to Jackson (uncomment bean in HoliBankApplication#70, The application fails with:
Command ‘de.holisticon.bank.domain.Deposit’ resulted in org.axonframework.messaging.annotation.MessageHandlerInvocationException(Error handling event of type [class de.holisticon.bank.domain.AccountCreated] in aggregate)
I assume that because parsing the json event confused AccountCreated and BalancedChanged …
Did you see this problem somewhere else?