I want to make a small(est) app which uses only ignite-core-2.0.0 and does Ignite messaging. There is a cluster somewhere which I want to exchange messages with.
I've set IGNITE_HOME to ./apache-ignite-2.0.0-src where I've got compiled sources. File IGNITE_HOME/config/default-config.xml exists and isn't changed.
Here is the code running before the exception
Ignition.setClientMode(true);
Ignite ignite = Ignition.start();
...
I'm getting
Exception in thread "main" class org.apache.ignite.IgniteException:
Failed to create Ignite component (consider adding ignite-spring
module to classpath)...
Caused by: java.lang.ClassNotFoundException:
org.apache.ignite.internal.util.spring.IgniteSpringHelperImpl
I don't see IgniteSpringHelperImpl class in ignite-core JAR and wonder why it could be needed.
How to get messaging work with only ignite-core JAR?
Ignition.setClientMode(true);and disconnecting allows to send messages. Complains now about this:org.apache.ignite.internal.cluster.ClusterGroupEmptyCheckedException: Cluster group is empty.Can I make a brand new cluster with one node which I just started and send messages to it? - J. Doe