在 Apache Mina 2.0.2 中找不到 SerialAddress 类

发布于 2024-10-15 23:59:48 字数 375 浏览 1 评论 0原文

我在项目 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无人问我粥可暖 2024-10-22 23:59:48

看起来这个类不是 mina-core 的一部分。一些探索导致了 Apache Mina 串行通信支持的存在< /a>.

所以我猜你会想要添加 mina-transport-serial 的依赖项。

<dependency>
    <groupId>org.apache.mina</groupId>
    <artifactId>mina-transport-serial</artifactId>
    <version>2.0.2</version>
</dependency>

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.

<dependency>
    <groupId>org.apache.mina</groupId>
    <artifactId>mina-transport-serial</artifactId>
    <version>2.0.2</version>
</dependency>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文