XML文件配置的路径的问题吧
你试试!
<?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd"><web-app>
  <taglib>
      <taglib-uri>/web-inf/lib/simple</taglib-uri>
      <taglib-location>/web-inf/lib/simple.tld</taglib-location>
  </taglib>
</web-app>

解决方案 »

  1.   

    把tld文件中的<uri>/web-inf/simple</uri>删掉
      

  2.   

    例子发给你了另外问问你的tld文件放到哪个目录下了?你前面写的站点结构看着不大对阿
    正常的应该是
    web-inf/classes
    web-inf/lib
    web-inf/web.xml
    web-inf/simple.tld
      

  3.   

    呵呵,web.xml文件中taglib-uri定义的是你的jsp中使用的引用名,而不是相对路径
    这是你写的<taglib-uri>/web-inf/simple</taglib-uri>
    这样就行了<taglib-uri>simple</taglib-uri>
    在jsp上引用
    <%@ taglib uri="simple" prefix="mysimpletag"%>
    使用该自定义标识<mysimpletag:date/>