I am using Apache Ignite server in my application with Ignite jars (Ignite jar version 2.12.0) alone and I did not implemented with the Ignite standalone software, since it requires separate software.
The problem is that, when used with Java 8, it is running properly, when used with Java 7, it is showing UnsupportedClassVersionError.
Note: In my application the requirement is Java 7 only.
Error details:
java.lang.UnsupportedClassVersionError: org/apache/ignite/spi/discovery/tcp/ipfinder/TcpDiscoveryIpFinder : Unsupported major.minor version 52.0
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:800)
at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:449)
Could any one guide on that? How to use Apache Ignite with Java 7?