Horje
exception in thread "main" java.lang.noclassdeffounderror: org/apache/commons/logging/logfactory Code Example
exception in thread "main" java.lang.noclassdeffounderror: org/apache/commons/logging/logfactory
First, double check that your classpath is indeed correct. 
Second, try opening the jar and check that it actually contains the org.apache.commons.logging.LogFactory class. 
Finally, try debugging by setting a breakpoint in the class loader. !!–Kolibri!!

If you're using maven for managing dependencies, add the following line in your pom.xml:
<dependency>
        <groupId>commons-logging</groupId>
        <artifactId>commons-logging</artifactId>
        <version>1.1.1</version>
</dependency>




Java

Related
check if object in array java Code Example check if object in array java Code Example
Error inflating class ImageView Code Example Error inflating class ImageView Code Example
how to get a section of an array in java Code Example how to get a section of an array in java Code Example
how to increment character in java Code Example how to increment character in java Code Example
check instance of java Code Example check instance of java Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7