评估网基于网络的编辑器:搜索工具包
我的目标是实现基于网络的评估网编辑器(Petri网的扩展),类似于那个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.
Thanks in advance ;)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有许多替代选项:
Vaadin 是我的最爱。您可以像构建 swing 桌面应用程序一样构建 Web GUI,而无需了解 javascript。看看它的演示。 vaadin 具有专业的外观,因此可以轻松构建看起来不错的东西。
Vaadin 将其支持 GUI 对象存储在会话中,因此如果客户端空闲时间超过了会话超时时间,他们将必须刷新应用程序。
另一个与 Vaadin 类似的是 Apache Wicket。
There are a number of alternative options:
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 stores its backing GUI objects in session so if client idle for longer than the seestion timeout, they will have to refresh the application.
Another one similar to Vaadin is Apache Wicket.