I have this following problem in Netbeans IDE - when I create a JSP file and put these two taglibs inside
<%@taglib prefix="portlet" uri="http://java.sun.com/portlet_2_0" %>
<%@taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
then I get error The absolute uri ... cannot be resolved
. So I am wondering where could be the problem?Application is working correctly when is deployed to AS but I would like to enjoy things like autocompletion during development. My pom.xml
looks like this - PasteBin.
I suppose I have all the necessary JARs on classpath so how can I make NetBeans to recognize those tags?