IntelliJ IDEA出现错误Exception in thread "main" java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory

解决方案:

1、找到项目的pom.xml文件,添加依赖。如下图:

 

IntelliJ IDEA出现错误Exception in thread

代码:

        
            
            org.slf4j
            slf4j-api
        

        
            
            org.slf4j
            slf4j-log4j12
        

        
            
            org.slf4j
            slf4j-simple
        

2、然后运行clean清除一下缓存,如下图:

IntelliJ IDEA出现错误Exception in thread

3、最后运行项目,就成功啦!

你可能感兴趣的:(Java)