0

私はOpenDolphinをテストしており、サーバー側の共有側モデルを簡単に作成できました。

OpenDolphin バージョン: 0.8.4

クライアント側には、JavaFX アプリケーションがあります。ログインパネルを次のように作成しました:

  • ローカル ファイルから利用可能なサーバーをロードする ChoiceBox
  • ユーザー名フィールド
  • パスワード欄
  • ボタン

ClientConfiguration のパラメーターは次のとおりです。

  • StringurlEndpoint
  • UiThreadHandler(uiThreadHandler ui スレッド ハンドラ)

//Dolphin プラットフォームの構成を作成します。//urlendpoint は (" http://localhost:8080/dolphin ")のように ChoiceBox から取得されます

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

使用するRunnable::runとクライアントが接続しますが、Platform::runLater (JavaFXConfiguration(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 に答える