| | |
| | | if (!systemSign){ |
| | | if (new LicenseVerify().verify()){ |
| | | SystemProperties.WCS_RUNNING_STATUS.set(Boolean.TRUE); |
| | | return R.ok().add(Cools.add("status", SystemProperties.WCS_RUNNING_STATUS.get())); |
| | | return R.ok(); |
| | | } |
| | | } |
| | | } catch (Exception e){ |
| | | log.error("许可证验证失败!!异常:{}",e.getMessage()); |
| | | return R.error(); |
| | | } |
| | | SystemProperties.WCS_RUNNING_STATUS.set(Boolean.FALSE); |
| | | return R.ok().add(Cools.add("status", SystemProperties.WCS_RUNNING_STATUS.get())); |
| | | return R.ok(); |
| | | } |
| | | |
| | | /****************************************************************/ |