我通过java exe comman line
启动Service.jar(Spring boot的构建)Thread thread = new Thread(new Runnable() {
@Override
public void run() {
try {
String command = "java -jar " + rootFolder + serviceFile + " " + additionalEnv;
if(SystemUtils.checkLinuxPlatform()){
command = "nohup " + command + " &";
}
Runtime.getRuntime().exec(command);
} catch (Exception e) {
System.out.println(e.getMessage());
}
}
});
。但是当我关闭java app时,服务会终止跟随。 如何在不退出Java app或其他方式启动服务自动化的情况下保持服务运行。