ライブラリを作成しました--customtags.jar
taglib.tldの構造は次のとおりです
<?xml version="1.0" encoding="UTF-8"?>
<taglib version="2.1"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-jsptaglibrary_2_1.xsd">
<tlib-version>1.0</tlib-version>
<short-name>custom</short-name>
<uri>taglib</uri>
<tag-file>
<name>label</name>
<path>/WEB-INF/tags/Label.tag</path>
</tag-file>
<tag-file>
<name>textarea</name>
<path>/WEB-INF/tags/TextArea.tag</path>
</tag-file>
<tag-file>
<name>textfield</name>
<path>/WEB-INF/tags/TextField.tag</path>
</tag-file>
index.jspページ内
<%@taglib prefix="custom" uri="customtags.jar"%>
変えたら
<%@taglib prefix="custom" uri="WEB-INF/lib/customtags.jar"%>
訂正して更新してください!