I have My Eclipse 3.8.2 and the problem is i have a dependant project where all the class files are and the jsp project which uses them.
Our jsp pages does static includes of inc files (declared as jsp fragments in the My Eclipse configuration) in the inc files we do import some classes in the dependant project.
on the main jsp we see an annotation on the right side the annotation says couldn’t find class that is imported in the include file.
The annotation read ServerConfig cannot be resolved, ServerConfig class is not used in this page but used in the include page
the include page has this line at the begining
<%@ page import = “com.eggtheory.brainfuse.server.*” %><%@ page import = “com.eggtheory.brainfuse.web.common.SiteConstants” %><%!
/// Some declarations %>
<%
// Some code
%>
The odd thing is that when editing the include file I get Code Insight for ServerConfig and other classes that the ide is complaining about.
I tried the workaround of adding the bin directory but that didn’t work