Springboot 实现操作OPC ua Server 的数据读写 | 代码教程
Posted 洛阳泰山
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Springboot 实现操作OPC ua Server 的数据读写 | 代码教程相关的知识,希望对你有一定的参考价值。
本次采用KEPServerEX5模拟服务端,使用milo开发的程序作为客户端
搭建服务端,KEPServerEX6的安装省略掉,下面是配置过程
设置通道、设备、标签
代码教程
pom文件引入milo 客户端jar包依赖
<dependency>
<groupId>org.eclipse.milo</groupId>
<artifactId>sdk-client</artifactId>
<version>0.2.4</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
代码实现
import lombok.Data;
import lombok.e
以上是关于Springboot 实现操作OPC ua Server 的数据读写 | 代码教程的主要内容,如果未能解决你的问题,请参考以下文章