问题描述
jsp文件<%@pagecontentType="text/html;charset=gb2312"language="java"import="java.sql.*"errorPage=""%>(有问题)<%@tagliburi="http://www.jspcentral.com/tags"prefix="xf"%><!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html><head><metahttp-equiv="Content-Type"content="text/html;charset=gb2312"><title>无标题文档</title></head><body><center><fontcolor="#0000FF"><xf:hello/></font></center></body></html>web。xml文件<web-app><taglib><taglib-uri>http://www.jspcentral.com/tags</taglib-uri><taglib-location>/WEB-INF/tags/demo.tld</taglib-location></taglib></web-app>dome。tld文件<?xmlversion="1.0"encoding="gb2312"?><!DOCTYPEtaglibPUBLIC"-//SunMicrosystems,Inc.//DTDJSPTagLibrary1.1//EN""http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd"><!--ataglibrarydescriptor--><taglib><tlibversion>1.0</tlibversion><jspversion>1.2</jspversion><tag><name>hello</name><tagclass>scr.unit16.HelloTag</tagclass></tag><tag><name>time</name><tagclass>scr.unit16.TimeTag</tagclass></tag></taglib>问题在jsp文件中netbeans编译器为什么提示taglib的uri路径Theabsoluteuri:"http://www.jspcentral.com/tags"cannotberesolvedineitherweb.xmlorthejarfilesdeployedwiththisapplication这样的错误??请高手大侠帮忙!!!
解决方案
解决方案二:
去JSP问问吧~~
解决方案三:
把你web.xml中的<taglib-uri>里的内容改下试试,比如我的自定义标签配置是JSP:<%@tagliburi="http://java.sun.com/jsp/jstl/core"prefix="c"%>
web.xml:<taglib><taglib-uri>jsp/jstl/c.tld</taglib-uri>taglib-location>/WEB-INF/tld/c.tld</taglib-location></taglib>
解决方案四:
jsp啊,太高深了。