最近再弄maven項目,運行起來沒有問題,可是Console控制檯會報錯,好比說以下的問題異常提示:api
由此咱們能夠看出,報出錯誤的地方主要是slf4j的jar包,而故障碼中「Failed to load class ’org.slf4j.impl.StaticLoggerBinder‘」的意思則是「加載類文件org.slf4j.impl.StaticLoggerBinder時失敗」。maven
而官網上刊登的解決辦法是:spa
<dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.5.6</version> <type>jar</type> </dependency> <dependency> <groupId>slf4j-simple</groupId> <artifactId>slf4j-simple</artifactId> <version>1.5.2</version> </dependency>
加入jar包後問題完美解決!!code