root of context hierarchy

Posted sandyyeh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了root of context hierarchy相关的知识,希望对你有一定的参考价值。

Spring Boot项目,运行不明中断。日志如下:

 

2018-11-03 11:03:43.358 INFO [Thread-2][AbstractApplicationContext.java:984]: Closing org.spring[email protected]7d70d1b1: startup date [Sat Nov 03 10:54:46 CST 2018]; root of context hierarchy

异常原因:

  启动脚本:java -jar lib/cdc-×××-1.0.3-SNAPSHOT.jar >>cdc-×××.log  2>&1 & 

  这样启动的进程,虽然不会占用控制台,但还是会随着远程终端的中断而中断;

解决方法:

  用nohup 命令来启动服务:

  nohup java -jar lib/cdc-×××-1.0.3-SNAPSHOT.jar >>cdc-×××.log  2>&1 & 

补充说明:

nohup命令 可以将程序以忽略挂起信号的方式运行起来,被运行的程序的输出信息将不会显示到终端。

以上是关于root of context hierarchy的主要内容,如果未能解决你的问题,请参考以下文章

Hierarchy and examples of programming languages grouped by concepts --编程语言分类

The hierarchy of the type AnchorTag is inconsistent

The hierarchy of the type NsRedisConnectionFactory is inconsistent

关于The hierarchy of the type TestBeforeAdvice is inconsistent的问题

Java:The hierarchy of the type is inconsistent错误

Provider.of(context, listen: false) 是不是等同于 context.read()?