缺少Jar包错误汇总

Java中遇到的很多错误都是因为缺少Jar包造成的,现在汇总如下:

  • 前台jsp报错:
    Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/core"
    加入jstl.jar和standard.jar
  • 启动tomcat报错
    java.lang.NoSuchMethodError: com.opensymphony.xwork2.util.finder.ClassFinder.(Lcom/opensymphony/xwork2/util/finder/ClassLoaderInterface;Ljava/util/Collection;ZLjava/util/Set;Lcom/opensymphony/xwork2/util/finder/Test;)V
    之前使用的xwork-core-2.1.6.jar版本太低,换成xwork-core-2.2.1.jar
  • Exception in thread “main” java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory
    加入commons-logging.jar

你可能感兴趣的:(报错,jar包)