I am new to Ignite. I have understood about basics of CacheConfiguration and IgniteCache. I have used SqlQuery API by annotating fields with @QuerySqlField in POJO and by setting setIndexedTypes() on my cache configuration. I got to know about ignite-schema-import which reads schema of the database and creates POJOS and a CacheConfig.java which has queryEntity() and JdbcType(). How can I make use of this two methods(queryEntity() and JdbcType()) to configure ignite cache, any code samples are much appreciated.
Actually, I am using JPA to connect to DB. Is there a possibility to tweak ignite-schema-import to make my POJO's JPA compliant. If yes then where should i look into.