Examples of JpaEventStore


Examples of org.axonframework.eventstore.jpa.JpaEventStore

        assertNotNull("maxSnapshotsArchived is defined", maxSnapshotsArchived);
        assertEquals("maxSnapshotsArchived value", "2", maxSnapshotsArchived.getValue());
        PropertyValue batchSize = definition.getPropertyValues().getPropertyValue("batchSize");
        assertEquals("maxSnapshotsArchived value", "1000", batchSize.getValue());

        JpaEventStore jpaEventStore = beanFactory.getBean("eventStore", JpaEventStore.class);
        assertNotNull(jpaEventStore);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.