java.lang.NoClassDefFoundError: org/apache/commons/lang/Validate

前端 未结 4 1270
自闭症患者
自闭症患者 2021-01-14 02:43

Why does the following happen and how can I fix it?

Exception in thread \"main\" java.lang.NoClassDefFoundError: org/apache/commons/lang/Validate
    at org.         


        
4条回答
  •  走了就别回头了
    2021-01-14 03:15

    You need to download the Apache Commons/Lang and make sure it's included in CLASSPATH (or if using IDE, make sure that all required libraries are included in the build configuration).

    See also

    • Java Tutorials/Platform Environment/PATH and CLASSPATH

提交回复
热议问题