Getting java.lang.ClassNotFoundException: org.apache.commons.logging.LogFactory exception

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>

Leave a Comment