Hi, Java doesn't support "classpath:/" protocol out of the box. This is Spring Framework feature. http://stackoverflow.com/questions/12006602/java-url-protocols-classpath
My suggestion is to use plain well-know "file:///" protocol instead. As an example you can refer to ExampleNodeStartup class that is available as a part of Ignite examples to see how a relative path can be used. Also make sure that if you use a relative path to the configuration file then the latter has to be located relatively to IGNITE_HOME. Read more on this referring to IgniteConfiguration.getIgniteHome() method. -- Denis -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/How-to-solve-this-problem-tp3663p3665.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.
