log4j启动报错ERROR StatusLogger Unable to create Lookup for ctx

发布时间:2024年01月03日

ERROR StatusLogger Unable to create Lookup for ctx
?java.lang.NoSuchMethodError: org.apache.logging.log4j.util.LoaderUtil.getClassLoaders()[Ljava/lang/ClassLoader;
?? ?at org.apache.logging.log4j.core.impl.ThreadContextDataInjector.getServiceProviders(ThreadContextDataInjector.java:77)
?? ?at org.apache.logging.log4j.core.impl.ThreadContextDataInjector.<clinit>(ThreadContextDataInjector.java:64)

定位下LoaderUtil发现log4j版本不一致,log4j-core-2.17.2在调用log4j-api-2.20.0导致的,找一下作恶源,是org.elasticsearch7.17.10,用不到log4j的话直接排除掉

<dependency>
   <groupId>org.elasticsearch</groupId>
   <artifactId>elasticsearch</artifactId>
   <version>7.17.10</version>
   <exclusions>
      <exclusion>
         <groupId>org.apache.logging.log4j</groupId>
         <artifactId>log4j-core</artifactId>
      </exclusion>
   </exclusions>
</dependency>

文章来源:https://blog.csdn.net/flyf000/article/details/135361926
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。