解决SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder"问题

问题描述

在提交AdvertisingTopology到Heron中运行时,Spout日志中出现:

解决SLF4J: Failed to load class

问题解决

参考:https://www.cnblogs.com/justlove/p/7637681.html

官网:This error is reported when the org.slf4j.impl.StaticLoggerBinder class could not be loaded into memory. This happens when no appropriate SLF4J binding could be found on the class path. Placing one (and only one) of slf4j-nop.jar, slf4j-simple.jar, slf4j-log4j12.jar, slf4j-jdk14.jar or logback-classic.jar on the class path should solve the problem.

翻译:这个错误是当org.slf4j.impl报道。StaticLoggerBinder类不能被加载到内存中。发生这种情况时,无法找到合适的SLF4J绑定类路径。slf4j-nop.jar放置一个(且只有一个), slf4j-simple.jar, slf4j-log4j12.jar, slf4j-jdk14.jar 或 logback-classic.jar 的类路径应该解决这个问题。

因此解决的办法就是在Maven工程的pom文件中随便加载一个上述的包文件之一的依赖就可以了(且只有一个),此时我加载的是:

解决SLF4J: Failed to load class

重新编译提交后,无此错误的提示。

你可能感兴趣的:(流式计算Heron)