小调整

This commit is contained in:
bwcx_jzy 2019-07-27 19:37:41 +08:00
parent 10c1df84c2
commit bfc225c647
3 changed files with 15 additions and 10 deletions

View File

@ -1,11 +1,14 @@
### 开发计划
1. 引人ssh管理
2. 主要管理页面兼容移动端
3. ssl 到期提醒、快捷续签
4. 升级到SpringBoot 2.0.x
5. 重构用户权限
6. windows快速升级
7. Nginx的状态管理
8. Tomcat管理优化
1. 引人ssh管理
2. 主要管理页面兼容移动端
3. ssl 到期提醒、快捷续签
4. 升级到SpringBoot 2.0.x
5. 重构用户权限
6. windows快速升级
7. Nginx的状态管理
8. Tomcat管理优化
1. 优化启动
2. 在线修改配置
9. 在线修改配置

View File

@ -164,6 +164,9 @@ public class WindowsSystemCommander extends AbstractSystemCommander {
if ("NOT RESPONDING".equalsIgnoreCase(status)) {
return "无响应";
}
return "未知";
if ("Unknown".equalsIgnoreCase(status)) {
return "未知";
}
return status;
}
}

View File

@ -143,6 +143,5 @@ public class CommandUtil {
pb.redirectError(ProcessBuilder.Redirect.INHERIT);
pb.redirectInput(ProcessBuilder.Redirect.INHERIT);
pb.start();
}
}