Ignite cache process entry should inject source?

classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

Ignite cache process entry should inject source?

姜 为
Hi Igniters,
       
        I’m using Ignite cache store objects.  The object use Externalizable interface
      to serialization  and deserialization.
        When object has field use @SpringSource will not inject.

        Should add resource inject to Ignite cache?

        example :

        class Entey implements Externalizable {
        @SpringSource(“springSource")
         private Service service;


         public void read… and write...
     }