Hi,
I'm pretty new to the Apache Ignite.
I'm working with peerclassloading and need to understand a couple of
thing.

Scenario:
1x server and 1x client

Cache:
CacheConfiguration<String, List> cc = new CacheConfiguration<>("my-
cache");

Code creating classnotfound:
FluidGridItem item = new FluidGridItem(UUID.randomUUID());
List<FluidGridItem> ll = new ArrayList<>();
ll.add(item);
cache.put(key, ll);

Code loading class ok: (INFO: Class locally deployed: class
org.primefaces.extensions.model.fluidgrid.FluidGridItem)
FluidGridItem item = new FluidGridItem(UUID.randomUUID());
List<FluidGridItem> ll = new ArrayList<>();
ll.add(item);
cache.put(key, Arrays.asList(ll.toArray()));


Can someone please explain why this is?
(It's been a headache resolving this - been trying to get a JCS project
migrated to Ignite)

br hw

Reply via email to