自动化立体仓库 - WCS系统
#
tqs
2023-01-02 7cca3a02642588e13644a35e6b995b60fa43c56b
src/main/java/com/zy/core/ServerBootstrap.java
@@ -28,7 +28,10 @@
    @Autowired
    private MainProcess mainProcess;
    /**
     * PostConstruct会在加载servlet的时候运行一次
     * @throws InterruptedException
     */
    @PostConstruct
    @Async
    public void init() throws InterruptedException {
@@ -89,7 +92,7 @@
        log.info("初始化条码扫描仪线程...................................................");
        for (Slave barcode : slaveProperties.getBarcode()) {
            BarcodeThread barcodeThread = new BarcodeThread(barcode);
            new Thread(barcodeThread).start();
//            new Thread(barcodeThread).start();
            SlaveConnection.put(SlaveType.Barcode, barcode.getId(), barcodeThread);
        }
        // 初始化LED线程