0

我正在测试 OpenDolphin,我设法简单地创建服务器端、共享端模型。

OpenDolphin 版本:0.8.4

对于客户端,我有 JavaFX 应用程序。我制作了登录面板:

  • 从本地文件加载可用服务器的选择框
  • 用户名字段
  • 密码字段
  • 按钮

ClientConfiguration 的参数是:

  • Stringurl端点
  • UiThreadHandler(uiThreadHandler ui 线程处理程序)

//为海豚平台创建一个配置。//urlendpoint 取自 ChoiceBox,如 (" http://localhost:8080/dolphin ")

ClientConfiguration config = new ClientConfiguration(urlEndpoint,Runnable::run); ClientContextFactory.connect(config).get();

如果我使用Runnable::run然后客户端连接,但如果我使用Platform::runLaterJavaFXConfiguration(urlEndpoint)实现它的方式)我得到错误:

Exception in thread "pool-2-thread-1" com.canoo.dolphin.client.ClientInitializationException: com.canoo.dolphin.client.ClientInitializationException: Can not connect to server!

任何线索为什么会发生这种情况?

4

1 回答 1

0

由于缺少“Dolphin Platform”标签,直到现在我还没有找到这个问题。

在当前版本的 Dolphin Platform 中,您可以简单地使用“DolphinPlatformApplication”类来创建您的应用程序。

你可以在这里找到一个例子: https ://github.com/canoo/dolphin-platform/tree/master/platform-examples/todo-example

主类:https ://github.com/canoo/dolphin-platform/blob/master/platform-examples/todo-example/todo-client/src/main/java/com/canoo/dolphin/todo/client/ToDoClient .java

于 2016-08-25T20:15:48.247 回答