Do your server node is also under spring boot or it is plain ignite assembly?
I did the following:
1. Start server node from regular ignite assembly
2. Run client with your configuration (build.gradle, mpm-ignite.xml)
All worked correct with changes described in my previous message.
Of course, I was still added cache configuration:
<property name="cacheConfiguration">
<list>
<bean
class="org.apache.ignite.configuration.CacheConfiguration">
<property name="name" value="Company" />
<property name="atomicityMode" value="ATOMIC" />
<property name="backups" value="1" />
<property name="indexedTypes">
<list>
<value>java.lang.String</value>
<value>org.ignite.example.Company</value>
</list>
</property>
</bean>
</list>
</property>
I guess it is still issue with dependencies. Check your project dependency
graph.
Sergej
--
View this message in context:
http://apache-ignite-users.70518.x6.nabble.com/Exception-while-trying-to-access-cache-via-JDBC-API-tp8648p8668.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.