当前位置: 代码迷 >> Java Web开发 >> Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/fmt"解决方案
  详细解决方案

Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/fmt"解决方案

热度:3750   发布时间:2016-04-16 22:18:59.0
Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/fmt"
Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/fmt",请问一下大家,这个错误是什么意思啊?
------解决方案--------------------
兄弟,你看,一下两个包有没有引入
jstl.jar  
standard.jar 

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

<jsp-config>  
        <taglib>  
            <taglib-uri>http://java.sun.com/jstl/fmt</taglib-uri>  
            <taglib-location>/WEB-INF/tlds/fmt.tld</taglib-location>  
        </taglib>  
        <taglib>  
            <taglib-uri>http://java.sun.com/jstl/fmt-rt</taglib-uri>  
            <taglib-location>/WEB-INF/tlds/fmt-rt.tld</taglib-location>  
        </taglib>  
        
</jsp-config>
------解决方案--------------------
引用:
在web.xml里添加了下面语句还是不行
<jsp-config>  
        <taglib>  
            <taglib-uri>http://java.sun.com/jstl/fmt</taglib-uri>  
            <taglib-location>/WEB-INF/tlds/fmt.tld</taglib-location>  
        </taglib>  
        <taglib>  
            <taglib-uri>http://java.sun.com/jstl/fmt-rt</taglib-uri>  
            <taglib-location>/WEB-INF/tlds/fmt-rt.tld</taglib-location>  
        </taglib>  
        
</jsp-config>

主要看/WEB-INF/tlds/fmt.tld 这个文件是否存在?有tag的定义才能用
  相关解决方案