I have a legacy JSF 1.0 application (using JSP, not facelets) which I have now migrated from MyEclipse to Eclipse 3.5 JEE, and I get a lot of errors from code similar to the following:
<f:view locale="#{foo.connection.langLocale}">
where the problem is that "foo" is explicitly inserted in the session object from Java code, and not injected by JSF or similar so Eclipse JEE thinks "foo" is undefined and marks this as an error. What is the proper way to tell Eclipse JEE that "foo" is perfectly fine, placed in the session object, and of type Foo?