jsp软件上传遇到了这个问题
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
请问要怎样解决!!!

解决方案 »

  1.   

    sql cant be resolved。
    在web.xml和deploy在application中的jar都不能resolve他总之:sql语句有问题
      

  2.   


    没见过 不过你可以摆渡一下结果:
    复制standard.jar和jstl.jar文件到web-inf/lib目录在您的项目
      

  3.   

    贴:这是因为你运行的代码里有的要改为本地文件才可以的! 
    你可以把文中出现http://java.sun.com/jstl/sql 的地方换成你的 
    服务器上jstl/sql的地址!试试吧!
      

  4.   

    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
      

  5.   

    错了,错误提示是这样的:
    org.apache.jasper.JasperException: 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
    不好意思啊
      

  6.   

    有时候在WEB-INF/lib目录下装了这2个jar文件可能还不行的话,那要在tomcat下的lib目录也要添加这2个jar文件