private final EntityComparator entityComparator;
public DataSyncServiceImpl(EntityManager em, JpaAttributeAccessor attributeAccessor) {
this.em = Assert.notNull(em);
this.attributeAccessor = Assert.notNull(attributeAccessor);
this.entityComparator = new EntityComparator(em.getMetamodel(), attributeAccessor);
}