org.slf4j.impl.StaticLoggerBinder.getSingleton

部署一台新服务器,tomcat启动报错,研究了很久,没有发觉和老服务器有很多不同,但确无法启动,访问应用提示如下错误,检查项目启动时,也提示有相关信息。 上网搜索了,发现都是说SLF4J版本不对应的问题,应该用1.6+的jar包。

但老的服务器能够运行,也检查了jar都有,但有多个,不明白前辈留下来的,有时候不敢乱删。对比老系统的启动日志,发现加载两个版本的先后顺序不同。老服务器先加载到了1.7.7的版本,新服务器先加载了1.4.2的版本。怀疑真可能是这个低版本1.4.2的jar包在作怪搞得鬼,删了1.4.2的jar,项目正常启动。 

两篇有价值的博主链接:

https://blog.csdn.net/GreyDesolate/article/details/86494582

https://blog.csdn.net/lubinsu/article/details/6901823

31-Dec-2019 20:35:59.485 严重 [localhost-startStop-1] org.apache.catalina.core.StandardContext.loadOnStartup Servlet [cardservlet] in web application [] threw load() exception
 java.lang.NoSuchMethodError: org.slf4j.impl.StaticLoggerBinder.getSingleton()Lorg/slf4j/impl/StaticLoggerBinder;
        at org.slf4j.LoggerFactory.bind(LoggerFactory.java:129)


SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/home/emoney/tomcat/webapps/ROOT/WEB-INF/lib/slf4j-log4j12-1.4.2.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/home/emoney/tomcat/webapps/ROOT/WEB-INF/lib/slf4j-simple-1.7.7.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
SLF4J: slf4j-api 1.6.x (or later) is incompatible with this binding.
SLF4J: Your binding is version 1.5.5 or earlier.
SLF4J: Upgrade your binding to version 1.6.x.
 

你可能感兴趣的:(JAVA)