ClassNotFoundException: org.slf4j.LoggerFactory

Try downloading jar from here You can find, it holds the class you need. EDIT Seems like the website has changed its structure. You need to choose which jar file you need for your project. For slf4j-api jar file for latest version as of now, please visit this link For slf4j-simple jar file for latest version as of now, please visit this … Read more

Difference between slf4j-log4j12 and log4j-over-slf4j

Use this if your code or some libraries you are using uses Log4j directly, but you want to use a different SLF4J binding than Log4j. It will route the Log4j API calls to SLF4J to the binding you choose. You need to remove the Log4j library from your classpath and replace it with this dependency. Use … Read more