Hello..

I am using Ignite with Spring boot version 1.5.8, all works well but when I
try to upgrade my spring boot app to 2.0.1 version some how
SpringCacheManager does not work.

Here is my piece of code - 

   /**
     * Provides SpringCacheManager to enable 2nd level caching on Ignite
     *
     * @return SpringCacheManager
     */
    @Bean
    public SpringCacheManager SpringCacheManager() {
        SpringCacheManager springCacheManager = new SpringCacheManager();
        springCacheManager.setGridName("WebGrid");
        return springCacheManager;
    }


During debug, I found out that following piece of code does not work - 

this.ignite = Ignition.ignite(this.igniteInstanceName);


So somehow, It cant join the existing instance on spring boot 2.0

Please note that ignite instance starts correctly but when it tries to join
it, it cant find the grid instance.

Did anyone experienced such issue ? 




--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Reply via email to