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-INF/tlds/fmt.tld 这个文件是否存在?有tag的定义才能用