Hello,
I’m using Ignite-Spring testing GridService rpc.
Like this example
https://github.com/apache/ignite/blob/master/examples/src/main/java/org/apache/ignite/examples/servicegrid/ServicesExample.java
<https://github.com/apache/ignite/blob/master/examples/src/main/java/org/apache/ignite/examples/servicegrid/ServicesExample.java>
I made change for SimpleMapServiceImpl use @Autowired to other service.
Ignite start using same SpringApplicationContext:
IgniteSpring.start(config, context);
and @Autowired is success .
But when Ignite.compute call IgniteCallable service.
The @Autowired service will be null.
Is this I configured problem or Ignite issue?