vote up 2 vote down star

I'm trying to get GWT Hosted mode working in Eclipse, à la this HOWTO. Servlets work fine, as does my GWT code, but all my JSPs fail because with errors such as the following:

[WARN] /view/lniExecutiveSummary.htm
org.apache.jasper.JasperException: /WEB-INF/jsp/lni/lniExecutiveSummary.jsp(1,1) The absolute uri: http://java.sun.com/jsp/jstl/fmt cannot be resolved in either web.xml or the jar files deployed with this application
    at org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:39)
    at org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:409)
    [ trimmed ]

This webapp works fine when deployed under Tomcat 5x; I just can't seem to get it to resolve the taglibs when running in Eclipse. I'm new to Eclipse, and getting it working with all the moving parts required for GWT+Maven has me pulling my hair out.

flag

1 Answer

vote up 0 vote down

Did you try to mark the "jsf-api.jar" as "exported" in your Java project ?
(as mentioned in this thread)

1.) Go into the java-project properties and mark the "jsf-api.jar" as exported. (project>properties>java build path>order and exports)
2.) Go into the advanced global tomcat preferences and add your project to the tomcat classpath (windows>preferences>tomcat>advanced>add projects to tomcat classpath)

Then, try again to run your webapp under eclipse.

Here is an article describing the same procedure/setup, not for JSF but Hudson (same problem though)

You can clearly see the two steps I mentioned above:

link|flag
Hmm, why jsf? Did you mean to say jstl? I already have that as a dep in my maven config, so it should already be on the classpath. But I'll go ahead and try adding it manually to the build path. Thanks. – Kaffeine Coma May 15 at 17:51
JSTL is more like it :) But the general principle described in this answer still stands. So, did it worked for your case ? – VonC May 15 at 19:19
Nope. I already have jstl listed as a dependency via Maven; it appears under the Maven deps on the "Libraries" tab, and I do have "Maven Dependencies" checkmarked on the "Order and Export" tab. Still no joy. :-( – Kaffeine Coma May 19 at 18:03
Sorry to hear, err... read that. If you do find a solution, do not forget to post it here ;) – VonC May 19 at 18:12
Will do. Thanks for your help in any case. – Kaffeine Coma May 19 at 18:14

Your Answer

Get an OpenID
or

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