怡然城南 发表于 2013-2-6 08:41:29

集成到项目中web.xml报taglib标签错误

web.xml的报错位置:
<taglib>
    <taglib-uri>/WEB-INF/runqianReport4.tld</taglib-uri>
    <taglib-location>/WEB-INF/runqianReport4.tld</taglib-location>
</taglib>

改成:
<jsp-config>
<taglib>
    <taglib-uri>/WEB-INF/runqianReport4.tld</taglib-uri>
    <taglib-location>/WEB-INF/runqianReport4.tld</taglib-location>
</taglib>
</jsp-config>
就Ok了,原因是web.xml的schema版本的问题(jsp版本)
页: [1]
查看完整版本: 集成到项目中web.xml报taglib标签错误