Hi,
I have a JSP file that doesn’t recognise my tags. I get those yellow underlines.
<%@ taglib uri=”taglib” prefix=”ml” %>
<ml:msg key=”field.name”/>
On the second line it says: Unknown tag (ml:msg)
It doesn’t give any errors about the taglib not being found (I checked by referencing it wrong on purpose; it gave an error).
In the web.xml the taglib-uri is referenced and the location to the corresponding .tld is set. If I reference the .tld directly in the .jsp, nothing changes.
The .jar that contains the tagclasses is included in the build path. (does code completion itself even need this jar? I would think knowing which tags are used should be enough…)
Although everything works when deployed, I can’t use the code completion this way.
Thank you in advance,
Robin