对于最新的稳定版本,请使用 Spring Shell 3.3.3spring-doc.cn

退出代码映射

退出代码的默认行为如下:spring-doc.cn

每个 Exception 都可以定义自己的 Exception退出代码之间的映射。 本质上,我们受制于有关退出代码的功能,并且简单地 融入其中。CommandRegistrationSpring Bootspring-doc.cn

假设下面有一个异常 show ,它将从命令中抛出:spring-doc.cn

static class MyException extends RuntimeException {

	private final int code;

	MyException(String msg, int code) {
		super(msg);
		this.code = code;
	}

	public int getCode() {
		return code;
	}
}

可以在 和 退出代码之间定义一个映射函数。您还可以 只需配置一个退出代码,这只是配置中的语法糖。Throwablespring-doc.cn

CommandRegistration.builder()
	.withExitCode()
		.map(MyException.class, 3)
		.map(t -> {
			if (t instanceof MyException) {
				return ((MyException) t).getCode();
			}
			return 0;
		})
		.and()
	.build();
无法使用基于注释的配置自定义退出代码