Eclipse “cannot find the tag library descriptor” for custom tags (not JSTL!)

前端 未结 22 1699
情书的邮戳
情书的邮戳 2020-12-12 16:33

I have a Java EE project which build fine with Ant, deploys perfectly to JBoss, and runs without any trouble. This project includes a few custom tag librari

22条回答
  •  时光取名叫无心
    2020-12-12 16:49

    This was my problem and how I fixed it...

    I had done everything everyone had mentioned above etc. but was still getting this error. Turns out I was using the uri's of http://java.sun.com/jsp/jstl/fmt and http://java.sun.com/jsp/jstl/core which were incorrect.

    Try switching the uris from above to:

    http://java.sun.com/jstl/fmt
    http://java.sun.com/jstl/core
    

    Also, make sure you have the correct jars referenced in your class path.

提交回复
热议问题