I am beginning my first google app engine jsp project. I am following the tutorial for the guestbook from here: https://developers.google.com/appengine/docs/java/gettingstarted/introduction. I am on the datastore step ( https://developers.google.com/appengine/docs/java/gettingstarted/usingdatastore ) and have pasted in the code on that page directly into my project. The code compiles and works, but I get the red squiggly underlines under fn:escapeXml calls. I see that these are functions from a taglib, as explained here: http://www.tutorialspoint.com/jsp/jsp_standard_tag_library.htm . So, how do I make eclipse know what is going on and not think this is an error?
I also had the same issues.
I have included JSTL-1.2.jar file as recomended above and have also included the following line in .jsp file
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
and ran clean project
this fixed the error