opendaylight的应用程序生成错误

brc7rcf0  于 2021-06-30  发布在  Java
关注(0)|答案(1)|浏览(309)

我想为opendaylight控制器部署一个应用程序。因此,我遵循以下指南:https://docs.opendaylight.org/en/stable-sodium/developer-guide/developing-apps-on-the-opendaylight-controller.html
我的步骤很简单:
设置基础设施(correct settings.xml,install maven,install jdk);
下载的示例模块:mvnarchetype:generate -darchetypegroupid=org.opendaylight.archetypes -darchetypeartifactid=opendaylight启动原型-darchetypecatalog=remote-darchetypeversion=1.2.1提供以下信息:

Define value for property 'groupId': : org.opendaylight.example 
Define value for property 'artifactId': :  example 
Define value for property 'version':  1.0-SNAPSHOT: : 1.0.0-SNAPSHOT 
Define value for property 'package':  org.opendaylight.example: : 
Define value for property 'classPrefix':
${artifactId.substring(0,1).toUpperCase()}${artifactId.substring(1)}
Define value for property 'copyright': : Copyright (c) 2015Yoyodyne, Inc

运行mvn clean install,几分钟后,它返回一个错误(这里是错误日志)。所以我不能编译这个项目。
有人能帮我排除故障吗?谢谢
更新:新日志可在https://lists.opendaylight.org/g/controller-dev/message/14938

gtlvzcf8

gtlvzcf81#

这句话对我来说很突出:

java.rmi.NotBoundException: b171a475-c036-43f1-a98d-c8cd8835aec9

应用程序试图打开的某个网络端口是否已经被同一系统上运行的另一个进程使用(绑定)了?

相关问题