JSP 页面识别不了标签tag <%@ taglib prefix="c" uri="..." %> uri: [...] cannot be resolved in
1,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页面引入 <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 识别不了报错 首先导入包 jstl-1.2.jar 重新启动之后,发现还是报错了,那么就 将 jstl-1.2.jar 里面的 c.tld 复杂一份放在 WEB-INF 下面。 重新编译启动之后,如果还是不行可以尝试 在web.xml 加上 <jsp-config> <taglib> <taglib-uri>http://java.sun.com/jsp/jstl/core</taglib-uri> <taglib-location>/WEB-INF/c.tld</taglib-location> </taglib> </jsp-config> 2, uri: [http://www.springframework.org/tags/form] cannot be resolved in