問題タブ [dolphin-platform]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票する
1 に答える
186 参照

java - params を指定して Dolphin Platform Action を呼び出すとエラーが返される

更新:わかりましたので、私が見たエラーは私が解決した別の問題から来ましたが、アクションはまだ呼び出されていません。更新されたエラー ログ

Dolphin プラットフォーム (V 0.6.1) でアプリの作成を開始しています。サーバー側のアクション (「クリック」) を呼び出す必要があります。これは正常に動作しますが、Params を渡したいと思ったらすぐに...の

CONTROLLER_ACTION_CALL_ERROR_BEAN エラー

私は何を間違っていますか?ControllerProxy のドキュメントでは、params は名前とカウントに一致する必要があると書かれています。

コントローラ

ビューバインダー

モデル

応用

サーバーログ

クライアントログ

0 投票する
1 に答える
101 参照

opendolphin - Dolphin Platform Chart Objects not working?

in my Dolphin Platform project, the XYChart.Series Object, which contains a series of XYChart.Data, does not seem to synchronize its datamodel.

My viewbinder binds the data of the BarChart with the PM and sets it to the BarChartObjekt

The model consists of an observable list of BarChart Data

On the serverside I am computing the BarChart data to pass it to my model object.

But the bar chart just stays empty. Just the category is visible. Because I thought maybe my data that I put together is flawed, I altered an example from the Oracle website and tested the data manually. On server side, this doesn´t work either.. same output. If I put this code on clientside inside the init method of my viewbinder, the data shows correctly. So there should be nothing wrong with the data being passed. Observerable lists with String i.e work just fine. Maybe I am missing something else?

0 投票する
1 に答える
57 参照

javafx-8 - opendolphin ClientInitializationException エラー

私は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!

なぜこれが起こっているのですか?

0 投票する
1 に答える
158 参照

opendolphin - 負荷分散シナリオで http スティッキー セッションなしで opendolphin を使用するには?

私は、「バインディング、プレゼンテーション モデルの構造化、テスト機能、ツールキットの独立性、および OpenDolphin の他のすべての利点を楽しみたいが、データ アクセスに REST (またはその他の) リモート処理を好む人は、OpenDolphin をインメモリで使用できます。構成"

しかし、ドキュメントでそれ以上のヒントを見つけることができませんでしたか?

負荷分散された Web サーバーでスティッキー セッションに頼ることができません。したがって、http セッション状態用に別のものをプラグインする必要があります。

これのために用意されたopendolphin構成プロパティはありますか? そうでない場合、利用可能なプラグイン ポイントはありますか?