HTTP Status 500 – The absolute uri: http

J2EE 码拜 9年前 (2015-04-15) 938次浏览 0个评论
 

HTTP Status 500 – The absolute uri: http://jsptags.com/tags/navigation/pager cannot be resolved in either web.xml or the jar files deployed with this application

HTTP Status 500 - The absolute uri: http
就是关于jsp分页

我在一个教学视频里面看的是这么弄的

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@taglib prefix="pg" uri="http://jsptags.com/tags/navigation/pager" %>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<pg:pager maxPageItems="15" items="${param.items }" export="curPage=pageNumber" url="${param.url }">
<c:forEach items="${param.params }" var="p">
	<pg:param name="${p }"/>
</c:forEach>
<pg:last>
共${items }记录,共${pageNumber }页,
</pg:last>
当前第${curPage }页
<pg:first>
	<a href="${pageUrl }">首页</a>
</pg:first>
<pg:prev>
	<a href="${pageUrl }">上一页</a>
</pg:prev>
<pg:pages>

<c:if test="${curPage eq pageNumber }">
	[${pageNumber }]
</c:if>
<c:if test="${curPage ne pageNumber }">
	<a href="${pageUrl }">${pageNumber }</a>
</c:if>
</pg:pages>
<pg:next>
	<a href="${pageUrl }">下一页</a>
</pg:next>
<pg:last>
	<a href="${pageUrl }">尾页</a>
</pg:last>
</pg:pager>

可是这个网址貌似已经过期了。

有没有类似的办法, 求贴教程

HTTP Status 500 - The absolute uri: http
已解决。。。
HTTP Status 500 - The absolute uri: http
这个网址貌似过期了,怎么办
HTTP Status 500 - The absolute uri: http
请问楼主如何解决的?现在我也碰到这个问题了

CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明HTTP Status 500 – The absolute uri: http
喜欢 (0)
[1034331897@qq.com]
分享 (0)

文章评论已关闭!