会报错

 
有些时候,<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>会报错,错误提示为:
Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/core"
主要原因是缺少
jstl.jar 
standard.jar
两个Jar包

如果还不行,请调整jstl.jar 版本,这个主要根据web的version的版本有关。增加如下

 
         
            http://java.sun.com/jstl/fmt 
            /WEB-INF/tlds/fmt.tld 
       
 
         
            http://java.sun.com/jstl/fmt-rt 
            /WEB-INF/tlds/fmt-rt.tld 
       
 
          
         
            http://java.sun.com/jstl/core 
            /WEB-INF/tlds/c.tld 
       
  

你可能感兴趣的:(小记)