本文介绍了评估网基于网络的编辑器:搜索工具包的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的目标是为评估网(Petri 网的扩展)实现基于 Web 的编辑器,例如 那个 Swing 应用程序、语言——Java.然而,我从未实现过这样的富网络应用程序,所以我现在正在寻找合适的工具包.目前我正在考虑 GWT,但是,就我没有经验而言,我也想考虑其他选择.希望得到您的建议.

My goal is to implement web based editor for evaluation nets (extension of Petri nets), something like that swing app, language - Java. However I've never implemented rich web applications like that, so I am searching for the proper toolkit now. Currently I am thinking about GWT, but, as far as I have no expirience with it, I want to consider another options too. Hoping for your advice.

提前致谢;)

推荐答案

有许多备选方案:

Vaadin 是我的最爱.您可以像构建 Swing 桌面应用程序一样构建 Web GUI,而无需了解 javascript.看看它的演示.vaadin 具有专业的外观,因此很容易构建看起来不错的东西.

Vaadin is my favourite. you can build a web GUI without having to know javascript at all in the same manner you build a swing desktop application. Have a look at its demo. vaadin comes with a professional look so it is easy to build something that look good.

Vaadin 将其支持的 GUI 对象存储在会话中,因此如果客户端空闲的时间超过了seestion 超时,他们将不得不刷新应用程序.

Vaadin stores its backing GUI objects in session so if client idle for longer than the seestion timeout, they will have to refresh the application.

另一个类似于 Vaadin 的工具是 Apache Wicket.

Another one similar to Vaadin is Apache Wicket.

这篇关于评估网基于网络的编辑器:搜索工具包的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-16 10:29