org.apache.ignite.IgniteException: Spring application context resource is not
injected.
at
org.apache.ignite.cache.store.jdbc.CacheJdbcPojoStoreFactory.create(CacheJdbcPojoStoreFactory.java:171)
Take a look at the source:
https://github.com/apache/ignite/blob/feace547f83181853ca6db8626ab9ac6d372eb83/modules/core/src/main/java/org/apache/ignite/cache/store/jdbc/CacheJdbcPojoStoreFactory.java#L171
This means the app was started w/out an application context.
If you used Ignition.start() then this stuation might occur.
Are you using @SpringApplicationContextResource or any such resource.
I noticed that the app you sent over did not use the xml config.
Can you send over the piece of code that starts the app(s).
Can you try w/out spring boot to see that it works.
Use Ignition.start(xml config) --- don't inject via annotation
Then add spring boot.
--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/