HTTP Status 500 - The absolute uri: http://Java.sun.com/jstl/core cannot be resolved...

来源:互联网 发布:水果软件激活 编辑:程序博客网 时间:2024/06/05 18:18

jsp中关于jstl使用的一个错误,

HTTP Status 500 - The absolute uri: http://Java.sun.com/jstl/core cannot be resolved in either web.xml or the jar files deployed with this application

解决方法如下:

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

uri 改为  http://java.sun.com/jsp/jstl/core即可。

0 0