one or more listeners failed. Full details will be found in the appropriate container log file   这句话的意思是:一个或多个侦听器无法启动。完整的详细信息将在相应的容器日志文件中找到

linux上面只有这一句话,没有详细报错详细,这时,我们在WEB-INF/classes目录下添加【logging.properties】

文件内容为:

org.apache.catalina.core.ContainerBase.[Catalina].level=INFO 

org.apache.catalina.core.ContainerBase.[Catalina].handlers=java.util.logging.ConsoleHandler

添加以上信息后,重新运行程序,控制台显示错误提示详细信息
严重:one or more listeners failed. Full details will be found in the appropriate container log file

这时,详细信息就显示出来了。

 java.long.UnsatisfiedLinkError:Unable to load library 'enc' :libenc.so        错误为libenc.so库没有加载到,这时根据详细信息就可以解决具体问题啦。 

相关文章:

  • 2021-06-26
  • 2021-05-03
  • 2021-06-05
  • 2021-08-24
  • 2021-08-05
猜你喜欢
  • 2022-01-12
  • 2021-09-19
  • 2021-11-19
  • 2021-05-14
  • 2022-12-23
  • 2021-11-20
  • 2022-12-23
相关资源
相似解决方案