在 Apache Mina 2.0.2 中找不到 SerialAddress 类
我在项目 POM 文件中添加了以下依赖项,但从下载的 mina-core.2.0.2.jar
中找不到 SerialAddress
类。
<dependency>
<groupId>org.apache.mina</groupId>
<artifactId>mina-core</artifactId>
<version>2.0.2</version>
</dependency>
org.apache.mina.transport.serial 包甚至不存在。请就正确的依赖关系向我提供建议。
I added the below dependencies in my project POM file and the SerialAddress
class is no where to be found from the downloaded mina-core.2.0.2.jar
.
<dependency>
<groupId>org.apache.mina</groupId>
<artifactId>mina-core</artifactId>
<version>2.0.2</version>
</dependency>
the package org.apache.mina.transport.serial
doesnt even exist. Please advice me on the correct Dependency.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来这个类不是 mina-core 的一部分。一些探索导致了 Apache Mina 串行通信支持的存在< /a>.
所以我猜你会想要添加 mina-transport-serial 的依赖项。
It looks like this class is not part of mina-core. Some exploration lead to the existence of Apache Mina Serial Communication Support.
So I guess you would want to add the dependency for mina-transport-serial.