Commit 04a6330d authored by yanzg's avatar yanzg

身份证识别

parent e6ec1125
...@@ -57,7 +57,9 @@ public class QueueServiceImpl implements QueueService, Runnable { ...@@ -57,7 +57,9 @@ public class QueueServiceImpl implements QueueService, Runnable {
} }
synchronized (this) { synchronized (this) {
isAsyncRun = true; isAsyncRun = true;
new Thread(this).start(); Thread thread = new Thread(this);
thread.setDaemon(true);
thread.start();
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment