拆分模块

This commit is contained in:
2025-09-03 20:56:44 +08:00
parent 08cc2c29a5
commit a2f5e4864b
939 changed files with 14227 additions and 9607 deletions

View File

@@ -0,0 +1,29 @@
package com.ecep.contract;
import javafx.application.Application;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Created by Administrator on 2017/4/16.
*/
public class AppV2 {
private static final Logger logger = LoggerFactory.getLogger(AppV2.class);
public static void main(String[] args) {
Application.launch(Desktop.class, args);
done();
}
private static void done() {
logger.info("done");
try {
Desktop.shutdown();
} catch (Exception e) {
throw new RuntimeException(e);
}
System.out.println("AppV2.done");
}
public static final String DEFAULT_HOST = "10.84.209.154";
}