问题标签 [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.
java - 使用参数调用 Dolphin Platform Action 返回错误
更新:好的,所以我看到的错误来自我现在解决的另一个问题,但仍未调用该操作。更新了错误日志
我开始使用 Dolphin 平台(V 0.6.1)创建一个应用程序,我需要调用一个服务器端操作(“单击”),它工作正常,但只要我想通过参数...我得到这
CONTROLLER_ACTION_CALL_ERROR_BEAN 错误
我究竟做错了什么?在 ControllerProxy 文档中,它说参数必须匹配名称和计数,它们确实如此......我也尝试只传递 MenuItemEntry,同样的错误......
控制器
视图绑定器
模型
应用
服务器日志
客户日志
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?
repository - Dolphin Platform spring-boot-archetype 的存储库
您能否确认用于使用 Dolphin Platform 'spring-boot-archetype' 的存储库?
谢谢
javafx-8 - opendolphin ClientInitializationException 错误
我正在测试 OpenDolphin,我设法简单地创建服务器端、共享端模型。
OpenDolphin 版本:0.8.4
对于客户端,我有 JavaFX 应用程序。我制作了登录面板:
- 从本地文件加载可用服务器的选择框
- 用户名字段
- 密码字段
- 按钮
ClientConfiguration 的参数是:
String
url端点UiThreadHandler
(uiThreadHandler ui 线程处理程序)
//为海豚平台创建一个配置。//urlendpoint 取自 ChoiceBox,如 (" http://localhost:8080/dolphin ")
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 与内存中的配置”
但是我在文档中找不到任何进一步的提示?
我不能依赖负载平衡网络服务器中的粘性会话。因此,我需要为 http 会话状态插入一些不同的东西。
是否为此准备了 opendolphin 配置属性?如果没有,是否有可用的插件点?