@Corey的解决方案很好。而且,如果您不想编写JUnit测试并在Jenkins中提供支持,则可以执行他先前提到的功能:捕获空指针异常(确实,在您的应用程序中只有顶级捕获),并且调用API以返回代码退出:
try { myCode.call();catch (Exception e) { System.out.println("An exception was caught at the top level:" + e); System.exit(-1);}
欢迎分享,转载请注明来源:内存溢出
@Corey的解决方案很好。而且,如果您不想编写JUnit测试并在Jenkins中提供支持,则可以执行他先前提到的功能:捕获空指针异常(确实,在您的应用程序中只有顶级捕获),并且调用API以返回代码退出:
try { myCode.call();catch (Exception e) { System.out.println("An exception was caught at the top level:" + e); System.exit(-1);}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)