|
@@ -109,11 +109,25 @@ public class ControlService {
|
|
|
}
|
|
|
|
|
|
private static void updateServiceState(String serviceId, String state) throws Exception {
|
|
|
- DataBase.update(Config.getCenterConnectionStr(), "insert into servicestate(serviceid,starttime,containercode,runstate) values (?,?,?,?)",
|
|
|
- serviceId,
|
|
|
- DataFormatUtil.toString(LocalDateTime.now()),
|
|
|
- Config.getContainerCode(),
|
|
|
- state);
|
|
|
+ if (Objects.equals(state, "1")) {
|
|
|
+
|
|
|
+ List<Map<String, Object>> mapList = DataBase.query(Config.getCenterConnectionStr(), "select runstate from servicestate where serviceid=? and containercode=?", serviceId, Config.getContainerCode());
|
|
|
+ if (mapList.isEmpty()) {
|
|
|
+
|
|
|
+ DataBase.update(Config.getCenterConnectionStr(), "insert into servicestate(serviceid,starttime,containercode,runstate) values (?,?,?,'1')",
|
|
|
+ serviceId,
|
|
|
+ DataFormatUtil.toString(LocalDateTime.now()),
|
|
|
+ Config.getContainerCode());
|
|
|
+ } else {
|
|
|
+ DataBase.update(Config.getCenterConnectionStr(), "update servicestate set starttime=?,runstate='1' where serviceid=? and containercode=?",
|
|
|
+ DataFormatUtil.toString(LocalDateTime.now()),
|
|
|
+ serviceId, Config.getContainerCode());
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ DataBase.update(Config.getCenterConnectionStr(), "update servicestate set stoptime=?,runstate='0' where serviceid=? and containercode=?",
|
|
|
+ DataFormatUtil.toString(LocalDateTime.now()),
|
|
|
+ serviceId, Config.getContainerCode());
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/**
|