I've a JSP app which gives me the error:
The type java.util.Map$Entry cannot be resolved. It is indirectly referenced from required .class files
Stackoverflow is full of post about this error, but all of them get to solve just compiling the .java
files using JDK7, plus using tomcat with same version (I mean, below to JDK8 which seems to be the problem, because some IDE version and tomcat versions doesn't support it).
The problem is that I've built my app (.java
files) using JDK 1.7.0_79
, plus I've my tomcat 6
server using the same one.
So there's no JDK 8 anywhere... Some screenshots with data:
My JVM directory:
Error stacktrace:
Tomcat process (running using JDK7):
Javac version used to compile:
Any idea about why do I still get this error?
Thank you in advance