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 的处理方法
自己亲自测试过, 如果新建的是 J2EE 5 的项目就没有这个问题 , 如果新建的是J2EE 6 的项目 就会出现这个 问题
解决办法很简单
把这个文件 jstl.jar 添加到 项目的 WEN-INF/lib 目录下 如果没有 lib 就自己手动建一个
还有 MyEclipse 自带了这个包 在 \MyEclipse 7.5\Common\plugins\com.genuitec.eclipse.j2eedt.core_9.0.0.me201103181703\data\libraryset\EE_6
可以找到 名字为 jstl-impl.jar
我的做法是 直接将这个包复制进去
WEN-INF/lib 目录
重启服务器
问题就解决了~
建议大家还是建J2EE5 的项目吧,J2EE6 的话 还有很多其它的问题,也是因为这个包的问题,比较麻烦~
直接建个 J2EE5 的项目,什么问题都没有了~嘿嘿···
分享到:
相关推荐
HTTP Status 500 - 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
@ taglib prefix=”c” uri=”http://java.sun.com/jsp/jstl/core” %> 2.如果jsp页面报如下异常 org.apache.jasper.JasperException: java.lang.ClassNotFoundException: org.apache.jsp.Customer.addCustomerInfo_...
jetty的main启动代码及相关jar包: ...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 导入jsp-api.jar就可以解决。
**The absolute uri:http://java.sun.com/jsp/jstl/core(也可能是http://java.sun.com/jstl/core) cannot be resolved in either web.xml or the jar files deployed** 可能二:项目目录下WEB-INF/lib下没有jstl.jar...
The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or t 最终查到问题是 jstl.jar 包在ide项目中有,但在tomcat发布的应用WEB-INF/lib下没有,这是工具发布项目的问题,...
这个是一个jar包,适用于...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,遇到这种报错信息,多半是缺少jar包。
当出现类似 `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` 的异常时,这通常...
解决struts2中报错:“HTTP Status 500 - 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 ...
关于The absolute uri: http://java.sun.com/jstl/core_rt cannot be resolved in either web.xml or the jar files deployed with this application解决! 将jstl.jar和standard.jar包导入工程后,运行页面依然...
当遇到类似`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`这样的异常时,...
当你在JSP页面中使用JSTL标签,如`<c:out>`,但出现"The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved"错误时,这通常是因为缺少JSTL库。你需要确保在项目的类路径下包含了JSTL的jar文件,...
在尝试访问`WEB-INF/jsp`页面时,可能会遇到如下的错误提示:“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”。...