org.apache.jasper.JasperException: Unable to find taglib [PF] for URI: [/view/conf/farmtag.tld]

需要在web.xml 中增加配置

  1. <jsp-config>
  2. <jsp-property-group>
  3. <url-pattern>*.jsp</url-pattern>
  4. <el-ignored>false</el-ignored>
  5. <page-encoding>utf-8</page-encoding>
  6. </jsp-property-group>
  7. <taglib>
  8. <taglib-uri>/view/conf/farmdoc.tld</taglib-uri>
  9. <taglib-location>/view/conf/farmdoc.tld</taglib-location>
  10. </taglib>
  11. <taglib>
  12. <taglib-uri>/view/conf/farmtag.tld</taglib-uri>
  13. <taglib-location>/view/conf/farmtag.tld</taglib-location>
  14. </taglib>
  15. <taglib>
  16. <taglib-uri>/view/conf/wda.tld</taglib-uri>
  17. <taglib-location>/view/conf/wda.tld</taglib-location>
  18. </taglib>
  19. </jsp-config>

位置如下

原文地址:https://www.cnblogs.com/qianzf/p/14353723.html