|  |  | 
 |  |  |     @Autowired | 
 |  |  |     private MainProcess mainProcess; | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * PostConstruct会在加载servlet的时候运行一次 | 
 |  |  |      * @throws InterruptedException | 
 |  |  |      */ | 
 |  |  |     @PostConstruct | 
 |  |  |     @Async | 
 |  |  |     public void init() throws InterruptedException { | 
 |  |  | 
 |  |  |         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线程 |