我找到了这个SpringBoot应用程序代码,当使用参数“ exitcode”执行该代码时会抛出退出代码10。
public class Swagger2SpringBoot implements CommandLineRunner {
@Override
public void run(String... arg0) throws Exception {
if (arg0.length > 0 && arg0[0].equals("exitcode")) {
throw new ExitException();
}
}
public static void main(String[] args) throws Exception {
new SpringApplication(SpringBootEntityApp.class).run(args);
}
class ExitException extends RuntimeException implements ExitCodeGenerator {
private static final long serialVersionUID = 1L;
@Override
public int getExitCode() {
return 10;
}
}
}
使用给定参数运行此代码将退出程序。
java -jar exitcode arg1 arg2
如果有人能解释这段代码的用例,我将不胜感激。
PS: 我们为什么要运行该程序以退出该程序。
参考: