I am using Axon 2.3.2 with Spring-boot-web/data 1.1.8
I have configured my app to use a JpaEventStore, currently to an H2 database.
The DOMAINEVENTENTRY table gets inserted to, everything looks OK, but I would prefer to have the event data serialized as XML, rather than as a Blob.
I have instantiated the store with JpaEventStore (entityManagerProvider, new XStreamSerializer()), but my events are still blobs.
What's missing?
Phil