vote up 1 vote down star
1

What are the possible causes of a "java.lang.Error: Unresolved compilation problem"?

Additional information:

I have seen this after copying a set of updated JAR files from a build on top of the existing JARs and restarting the application. The JARs are built using a Maven build process.

I would expect to see LinkageErrors or ClassNotFound errors if interfaces changed. The above error hints at some lower level problem.

A clean rebuild and redeployment fixed the problem. Could this error indicate a corrupted JAR?

flag
What did you do to cause this error? – Greg Hewgill Jul 14 at 11:28
Add some code where this happens and/or a full stacktrace – jitter Jul 14 at 11:30

2 Answers

vote up 0 vote down

I have the same problem -I am building the lucene srcs. I see the problem outside of eclipse too. In fact, I use eclipse to just debug and the build is done externally with ant -so eclipse is not involved in building. Its kind of hard to think that the lucene src build system is faulty.

link|flag
vote up 10 vote down

You are trying to run code inside Eclipse which has an error. Eclipse compiles the bad code to produce that message.

Ensure all errors are fixed and run again.


EDIT: Most accurate wording is "You are invoking code which has been generated by Eclipse. The source was erroneous, so the Eclipse compiler cannot compile it - instead byte code has been generated that shows the message in the question".

link|flag
That's not my case. I saw this after deploying JAR files (build using Maven) to a server. – Frank Jul 15 at 11:10
Maybe there's a problem with your Maven build config and it's using .class files from your eclipse output directory. Anyhow, the only time I've seen that error is when running code with compilation errors in eclipse. – Michael Borgwardt Jul 15 at 11:23
In that case your maven build is most likely broken. Try cleaning and recompiling from the command line, with Eclipse shut down. – Thorbjørn Ravn Andersen Jul 15 at 17:48
Didn't see you edited the question. I would reinvestigate the Maven build process since it appears to be not completely clean. It should NOT be able to create broken jars! Do you have a build server? – Thorbjørn Ravn Andersen Jul 15 at 18:00
I just had the same problem. It looks like, as Michael said, this was Maven picking up the class files generated by Eclipse. – Wouter Coekaerts Aug 27 at 9:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.