|
@@ -88,22 +88,22 @@ public class SystemInit {
|
|
|
@PostConstruct
|
|
|
public void init() throws Exception {
|
|
|
|
|
|
-// String serviceUrl = SpringContextApplication.getString("DEFAULT_SERVICE_URL");
|
|
|
-// String appkey = SpringContextApplication.getString("APPKEY");
|
|
|
-// try {
|
|
|
-// checkAppKey(serviceUrl, appkey);
|
|
|
-// ScheduleUtil.startCronTask(() -> {
|
|
|
-// try {
|
|
|
-// checkAppKey(serviceUrl, appkey);
|
|
|
-// } catch (Exception e) {
|
|
|
-// System.out.println(e.getMessage());
|
|
|
-// System.exit(-1);
|
|
|
-// }
|
|
|
-// }, "0 0 0 * * *");
|
|
|
-// } catch (Exception e) {
|
|
|
-// System.out.println(e.getMessage());
|
|
|
-// System.exit(-1);
|
|
|
-// }
|
|
|
+ String serviceUrl = SpringContextApplication.getString("DEFAULT_SERVICE_URL");
|
|
|
+ String appkey = SpringContextApplication.getString("APPKEY");
|
|
|
+ try {
|
|
|
+ checkAppKey(serviceUrl, appkey);
|
|
|
+ ScheduleUtil.startCronTask(() -> {
|
|
|
+ try {
|
|
|
+ checkAppKey(serviceUrl, appkey);
|
|
|
+ } catch (Exception e) {
|
|
|
+ System.out.println(e.getMessage());
|
|
|
+ System.exit(-1);
|
|
|
+ }
|
|
|
+ }, "0 0 0 * * *");
|
|
|
+ } catch (Exception e) {
|
|
|
+ System.out.println(e.getMessage());
|
|
|
+ System.exit(-1);
|
|
|
+ }
|
|
|
Config.setContainerCode(containerCode);
|
|
|
Config.setSecurityEnable(securityEnable);
|
|
|
Config.setDebug(debug);
|