提交 | 用户 | 时间
|
a5b351
|
1 |
package com.jcdm.main.plcserver; |
C |
2 |
|
|
3 |
|
|
4 |
import com.jcdm.main.da.collectionParamConf.service.IDaCollectionParamConfService; |
|
5 |
import com.jcdm.main.da.paramCollection.service.IDaParamCollectionService; |
|
6 |
import com.jcdm.main.da.passingStationCollection.service.IDaPassingStationCollectionService; |
1ccd69
|
7 |
import com.jcdm.main.da.testDeviceInterface.service.IDaTestDeviceInterfaceService; |
e70fb4
|
8 |
import com.jcdm.main.om.productionOrde.service.IOmProductionOrdeInfoService; |
a5b351
|
9 |
import com.jcdm.main.plcserver.conf.OPCElement; |
C |
10 |
import com.jcdm.main.plcserver.sub.OPCUaSubscription; |
|
11 |
import com.kangaroohy.milo.service.MiloService; |
|
12 |
import org.springframework.beans.factory.annotation.Autowired; |
|
13 |
import org.springframework.boot.ApplicationArguments; |
|
14 |
import org.springframework.boot.ApplicationRunner; |
|
15 |
import org.springframework.stereotype.Component; |
|
16 |
|
|
17 |
import java.util.ArrayList; |
|
18 |
import java.util.List; |
|
19 |
|
|
20 |
@Component |
|
21 |
public class CustomRunner implements ApplicationRunner { |
|
22 |
|
|
23 |
@Autowired |
|
24 |
private MiloService miloService; |
|
25 |
|
|
26 |
@Autowired |
|
27 |
private IDaPassingStationCollectionService daPassingStationCollectionService; |
|
28 |
|
|
29 |
@Autowired |
|
30 |
private IDaCollectionParamConfService collectionParamConfService; |
|
31 |
|
|
32 |
@Autowired |
|
33 |
private IDaParamCollectionService daParamCollectionService; |
|
34 |
|
8f0f8d
|
35 |
@Autowired |
懒 |
36 |
private IDaCollectionParamConfService daCollectionParamConfService; |
|
37 |
|
e70fb4
|
38 |
@Autowired |
A |
39 |
private IOmProductionOrdeInfoService omProductionOrdeInfoService; |
|
40 |
|
1ccd69
|
41 |
@Autowired |
A |
42 |
private IDaTestDeviceInterfaceService daTestDeviceInterfaceService; |
|
43 |
|
a5b351
|
44 |
@Override |
C |
45 |
public void run(ApplicationArguments args) throws Exception { |
|
46 |
|
|
47 |
OPCUaSubscription opcUaSubscription = new OPCUaSubscription( |
|
48 |
miloService, |
|
49 |
daPassingStationCollectionService, |
|
50 |
collectionParamConfService, |
e70fb4
|
51 |
daParamCollectionService, |
1ccd69
|
52 |
omProductionOrdeInfoService, |
A |
53 |
daTestDeviceInterfaceService); |
a5b351
|
54 |
|
C |
55 |
List<String> lists = getSubList(); |
3581b1
|
56 |
System.out.println("订阅内容:"+lists); |
073b17
|
57 |
miloService.subscriptionFromOpcUa(lists,50,opcUaSubscription); |
a5b351
|
58 |
} |
C |
59 |
|
|
60 |
/** |
|
61 |
* 订阅内容 |
|
62 |
*/ |
|
63 |
public List<String> getSubList(){ |
|
64 |
List<String> lists = new ArrayList<>(); |
4e83fa
|
65 |
lists.add(OPCElement.PACK_POP230_RecordData);//请求记录数据 |
A |
66 |
lists.add(OPCElement.PACK_POP240_RecordData);//请求记录数据. |
|
67 |
lists.add(OPCElement.PACK_POP240_TighteningFrequency);//请求记录数据 |
|
68 |
lists.add(OPCElement.PACK_PPOP241_TighteningFrequency);//请求记录数据 |
|
69 |
lists.add(OPCElement.PACK_PPOP242_TighteningFrequency);//请求记录数据 |
|
70 |
lists.add(OPCElement.PACK_POP301_TighteningFrequency);//请求记录数据 |
|
71 |
lists.add(OPCElement.PACK_POP250_RecordData);//请求记录数据 |
|
72 |
lists.add(OPCElement.PACK_POP250_TighteningFrequency);//请求记录数据 |
|
73 |
lists.add(OPCElement.PACK_POP260_RecordData);//请求记录数据 |
|
74 |
lists.add(OPCElement.PACK_POP260_TighteningFrequency);//请求记录数据 |
768498
|
75 |
// lists.add(OPCElement.PACK_OP290_RecordData);//请求记录数据 |
A |
76 |
// lists.add(OPCElement.PACK_OP290_AngleResult);//请求记录数据 |
4e83fa
|
77 |
lists.add(OPCElement.PACK_POP281_RecordData);//请求记录数据 |
768498
|
78 |
// lists.add(OPCElement.PACK_OP300B_RecordData);//请求记录数据 |
4e83fa
|
79 |
lists.add(OPCElement.PACK_POP282_RecordData);//请求记录数据 |
768498
|
80 |
// lists.add(OPCElement.PACK_OP310B_RecordData);//请求记录数据 |
4e83fa
|
81 |
lists.add(OPCElement.PACK_POP284_RecordData);//请求记录数据 |
A |
82 |
lists.add(OPCElement.PACK_POP310_RecordData);//请求记录数据 |
|
83 |
lists.add(OPCElement.PACK_POP310_TighteningFrequency);//请求记录数据 |
|
84 |
lists.add(OPCElement.PACK_POP330_RecordData);//请求记录数据 |
|
85 |
lists.add(OPCElement.PACK_POP330_TighteningFrequency);//请求记录数据 |
|
86 |
lists.add(OPCElement.PACK_POP340_RecordData);//请求记录数据 |
|
87 |
lists.add(OPCElement.PACK_POP340_TighteningFrequency);//请求记录数据 |
0aaaba
|
88 |
lists.add(OPCElement.PACK_POP350_RecordData);//请求记录数据 |
4e83fa
|
89 |
lists.add(OPCElement.PACK_POP3601_RecordData);//请求记录数据 |
A |
90 |
lists.add(OPCElement.PACK_POP3602_RecordData);//请求记录数据 |
|
91 |
lists.add(OPCElement.PACK_POP3603_RecordData);//请求记录数据 |
|
92 |
lists.add(OPCElement.PACK_POP3604_RecordData);//请求记录数据 |
|
93 |
lists.add(OPCElement.PACK_POP370_RecordData);//请求记录数据 |
|
94 |
lists.add(OPCElement.PACK_POP380_RecordData);//请求记录数据 |
|
95 |
lists.add(OPCElement.PACK_POP390_RecordData);//请求记录数据 |
|
96 |
lists.add(OPCElement.PACK_POP4101_RecordData);//请求记录数据 |
|
97 |
lists.add(OPCElement.PACK_POP4102_RecordData);//请求记录数据 |
|
98 |
lists.add(OPCElement.PACK_POP4103_RecordData);//请求记录数据 |
|
99 |
lists.add(OPCElement.PACK_POP4201_RecordData);//请求记录数据 |
|
100 |
lists.add(OPCElement.PACK_POP4202_RecordData);//请求记录数据 |
|
101 |
lists.add(OPCElement.PACK_POP4203_RecordData);//请求记录数据 |
70cc26
|
102 |
// |
4e83fa
|
103 |
lists.add(OPCElement.PACK_POP430_RecordData);//请求记录数据 |
A |
104 |
// lists.add(OPCElement.PACK__AngleResult);//请求记录数据 |
768498
|
105 |
//// |
4e83fa
|
106 |
lists.add(OPCElement.PACK_POP270_RecordData);//请求记录数据 |
A |
107 |
lists.add(OPCElement.PACK_POP283_RecordData);//请求记录数据 |
768498
|
108 |
// lists.add(OPCElement.PACK_OP320B_RecordData);//请求记录数据 |
4e83fa
|
109 |
lists.add(OPCElement.PACK_POP285_RecordData);//请求记录数据 |
768498
|
110 |
// lists.add(OPCElement.PACK_OP340B_RecordData);//请求记录数据 |
4e83fa
|
111 |
lists.add(OPCElement.PACK_POP286_RecordData);//请求记录数据 |
768498
|
112 |
// lists.add(OPCElement.PACK_OP350B_RecordData);//请求记录数据 |
4e83fa
|
113 |
lists.add(OPCElement.PACK_POP290_RecordData);//请求记录数据 |
273d64
|
114 |
lists.add(OPCElement.PACK_OP365_RecordData);//请求记录数据 |
4e83fa
|
115 |
lists.add(OPCElement.PACK_POP300_RecordData);//请求记录数据 |
A |
116 |
lists.add(OPCElement.PACK_POP320_RecordData);//请求记录数据 |
|
117 |
lists.add(OPCElement.PACK_POP400_RecordData);//请求记录数据 |
89f416
|
118 |
|
a5b351
|
119 |
return lists; |
C |
120 |
} |
|
121 |
} |
|
122 |
|