我正在努力My application's under maintanace module
try {
if (isUndermaintanace) {
System.exit(1);
} else {
prepareResources();
}
} catch (Exception e) {
printStack(e);
} finally {
cleanResources();
}
当我通过时 isundermaintanace
true
终于没有执行。
我错过了什么?有没有其他方法可以做到这一点?