問題タブ [opendolphin]
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.
java - 2015 年 8 月 24 日の Open-Dolphin ステータス
2015 年 8 月 24 日時点でのこの図書館の状況は? Web ページには移動のない月が数か月あります。
maven - Netbeans の基本設定での OpenDolphin Maven
JavaFX / OpenDolphin を使い始めようとしていて、ジャンプスタート zip をダウンロードしました。Maven zip を Netbeans にインポートすると、予想されるプロジェクト ツリーが表示されます。次に jumpstart_0 を実行しようとすると、次のエラーが発生します。
アーティファクト MyFirstDolphin:server:jar:1.0-SNAPSHOT が見つかりませんでした
Mavenも私にとっては初めてなので、この問題の解決をどこから始めればよいのか戸惑っています。
HelpWiki による 2 つの提案は次のとおりです。
- POM は、アーティファクトをホストするリポジトリの宣言を欠いています。
- 構成したリポジトリには認証が必要であり、Maven はサーバーに正しい資格情報を提供できませんでした。この場合、 ${user.home}/.m2/settings.xml に、使用するリモート リポジトリと一致する宣言が含まれていることを確認してください。
現在の pom.xml は次のとおりです。
明らかに私が欠けている基本的な知識がいくつかあり、誰かがこれに光を当てることができれば素晴らしいと思います. DolphinJumpStart は、Windows 7 の Netbeans 8 では「すぐに」動作しないため、同じ問題を抱えている人が他にもいるはずですか?
java - params を指定して Dolphin Platform Action を呼び出すとエラーが返される
更新:わかりましたので、私が見たエラーは私が解決した別の問題から来ましたが、アクションはまだ呼び出されていません。更新されたエラー ログ
Dolphin プラットフォーム (V 0.6.1) でアプリの作成を開始しています。サーバー側のアクション (「クリック」) を呼び出す必要があります。これは正常に動作しますが、Params を渡したいと思ったらすぐに...の
CONTROLLER_ACTION_CALL_ERROR_BEAN エラー
私は何を間違っていますか?ControllerProxy のドキュメントでは、params は名前とカウントに一致する必要があると書かれています。
コントローラ
ビューバインダー
モデル
応用
サーバーログ
クライアントログ
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?
javafx-8 - opendolphin ClientInitializationException エラー
私はOpenDolphinをテストしており、サーバー側の共有側モデルを簡単に作成できました。
OpenDolphin バージョン: 0.8.4
クライアント側には、JavaFX アプリケーションがあります。ログインパネルを次のように作成しました:
- ローカル ファイルから利用可能なサーバーをロードする ChoiceBox
- ユーザー名フィールド
- パスワード欄
- ボタン
ClientConfiguration のパラメーターは次のとおりです。
String
urlEndpointUiThreadHandler
(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!
なぜこれが起こっているのですか?
opendolphin - 負荷分散シナリオで http スティッキー セッションなしで opendolphin を使用するには?
私は、「バインディング、プレゼンテーション モデルの構造化、テスト機能、ツールキットの独立性、および OpenDolphin の他のすべての利点を楽しみたいが、データ アクセスに REST (またはその他の) リモート処理を好む人は、OpenDolphin をインメモリで使用できます。構成"
しかし、ドキュメントでそれ以上のヒントを見つけることができませんでしたか?
負荷分散された Web サーバーでスティッキー セッションに頼ることができません。したがって、http セッション状態用に別のものをプラグインする必要があります。
これのために用意されたopendolphin構成プロパティはありますか? そうでない場合、利用可能なプラグイン ポイントはありますか?