When you migrate an application to Apache Beehive, you must also update the corresponding taglib directives
in the JavaServer Pages (JSP) files.
The following example shows taglib directives in a JSP file.
<%@ taglib uri="netui-tags-html.tld" prefix="netui"%>
<%@ taglib uri="netui-tags-databinding.tld" prefix="netui-data"%>
<%@ taglib uri="netui-tags-template.tld" prefix="netui-template"%>
An automated fix will change these taglib directives to reference Apache Beehive URIs, as
shown in the following example:
<%@ taglib uri="http://beehive.apache.org/netui/tags-html-1.0" prefix="netui"%>
<%@ taglib uri="http://beehive.apache.org/netui/tags-databinding-1.0" prefix="netui-data"%>
<%@ taglib uri="http://beehive.apache.org/netui/tags-template-1.0" prefix="netui-template"%>