您的位置:首页 > 理论基础 > 计算机网络

Hi there,Error:The absolute uri: http://java.sun.com/jsp/jstl/sql cannot be resolved in either web.xml or the jar files deployed

2008-07-02 15:38 871 查看
Hi there,

I try to use the "SQL JSP Standard Library" but the taglib doesn't work.

I always receive the error:
"JSP Parsing Error:The absolute uri: http://java.sun.com/jsp/jstl/sql cannot be resolved in either web.xml or the jar files deployed with this application"

what am I doing wrong? This is my taglib line:

Code:
<%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql" %>
standard.jar is located within "WEB-INF/lib"

Thank you for your help!

Sascha[/code] Anonymous - May 22, 2005 - 02:29 PM
Post subject: Re: jsp: taglib won't be included (JSTL)
Sascha wrote:
Hi there,

I try to use the "SQL JSP Standard Library" but the taglib doesn't work.

I always receive the error:
"<B style="color:black;background-color:#ffff66">JSP Parsing Error:The absolute uri</B>: http://java.sun.com/jsp/jstl/sql cannot be resolved in either web.xml or the jar files deployed with this application"

what am I doing wrong? This is my taglib line:

Code:
<%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql" %>
standard.jar is located within "WEB-INF/lib"

Thank you for your help!

Sascha[/code]
Anonymous - Jun 09, 2005 - 06:37 AM
Post subject: RE: Re: jsp: taglib won you need to parse it in the web.xml to run correctly
try something like this
<taglib>
<taglib-uri> http://java.sun.com/jsp/jstl/sql</taglib-uri>
<taglib-location>/WEB-INF/sql.tld</taglib-location>
</taglib>
where /WEB-INF/sql.tld will be the tls wich you are referencing
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐