MINA加载问题,slf4j加载失败

JAVA-NIO-框架MINA2.0

LIB,MINA-CORE.JAR,slfj-api-1.5.2.jar,common-lang-2.4.jar,commons-logging-1.0.3.jar;

运行后报错,SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
Exception in thread "main" java.lang.NoClassDefFoundError: org/slf4j/impl/StaticLoggerBinder

 

解决方案:使用mina框架时日志使用SLFJ,还需要slfj-nop-1.5.2.jar包才能正常使用日志功能。

因此MINA的LIB只需要包含如下几个包:mina-core-2.0.jar,slfj-api-1.5.2.jar,common-lang-2.4.jar,commons-logging-1.0.3.jar;slfj-nop-1.5.2

 

你可能感兴趣的:(java,thread,html,框架,Mina)