为什么要(arg0.length> 0 && arg0 [0] .equals(“ exitcode”))?

时间:2019-10-30 04:56:44

标签: java spring-boot swagger swagger-2.0 swagger-codegen

我找到了这个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: 我们为什么要运行该程序以退出该程序。

参考:

  1. Swagger Petstore

  2. Plaza Client

  3. Yidi

  4. Stack Overflow Question 1

  5. Docker Dash

0 个答案:

没有答案