1. 程式人生 > >[Error] The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml ...

[Error] The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml ...

###Error: The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar files deployed with this application

    在 JSP 中引入 Jstl 出現上述錯誤。引入程式碼如下:

    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

解決方案

    出現這種錯誤是因為 jstl-1.2.jar 匯入到的 lib 目錄不對。需要在 WEB-INF 裡面建立一個 lib 目錄,然後再匯入。這就可以了。

    不知道其他的 jar 包需要這樣嗎。。。

    最後,感謝 yangchagnqing1234的部落格