update document

This commit is contained in:
xuxueli 2019-12-11 17:18:08 +08:00
parent f34361195f
commit 889ec44e45
1 changed files with 8 additions and 3 deletions

View File

@ -9,8 +9,8 @@ import java.util.concurrent.TimeUnit;
/**
* @author xuxueli 2018-10-31 19:05:43
*/
public class Application {
private static Logger logger = LoggerFactory.getLogger(Application.class);
public class FramelessApplication {
private static Logger logger = LoggerFactory.getLogger(FramelessApplication.class);
public static void main(String[] args) {
@ -18,8 +18,13 @@ public class Application {
// start
FrameLessXxlJobConfig.getInstance().initXxlJobExecutor();
// Blocks until interrupted
while (true) {
try {
TimeUnit.HOURS.sleep(1);
} catch (InterruptedException e) {
break;
}
}
} catch (Exception e) {
logger.error(e.getMessage(), e);