GWT - 具有拖放操作的关系数据库
我是一名学生,想与动态日程管理器一起制定最终草案。
建议在 Java 中工作。限制:应该使用 GWT 和 GXT(可选)+ 关系数据库(例如 MySql),并且将使用拖放库进行操作。
拖放操作将直接与数据库通信,例如将学生拖入班级。 您应该在学生各自的表中进行插入。 这是一个有趣的挑战,但需要大量的知识。
我问的问题是是否有人有做过类似事情的经验并可以建议我从哪里开始, 使用什么技术(例如关系数据库)、最佳方法、技巧等。
注意:我已经绘制了数据库,开始学习 Google Web Toolkit 文档。
谢谢。
I am a student and want to make the final draft with a Dynamic Schedule Manager.
It was proposed to work in Java. Restriction: Should use GWT with GXT (optional) + Relational Database (eg MySql) and will operate with a Drag and Drop library.
The Drag and Drop operations are going to communicate directly with the database, eg drag a student for a class.
You should make an insert in the student's respective table.
It's an interesting challenge, but requires a lot of knowledge.
The question I ask is if anyone has experience doing something similar and could advise me where to start,
what technologies to use (eg to Relational Database), best approaches, tips and so on.
Note: I've already draw Database, started learning the Google Web Toolkit docs.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
示例:
http://gwtquery-plugins.googlecode.com/svn /trunk/droppable/demo/GwtPortletSample/GwtPortletSample.html
查看该项目:
http://code.google.com/p/gwtquery-plugins/wiki/DragAndDropPluginForGWTDeveloppers
我建议您远离 GXT(相信我,同时摄取 GWT 和 GXT 可能相当令人畏惧!)。普通 GWT 对于您的应用程序来说应该足够了。
你那里有相当大的项目。另外,不要从头开始。在 code.google.com 中搜索 GWT 项目,该项目是为您加速开发而维护的。下面是一个使用 GWT + Maven + Objectify 的示例。
http://code.google.com/p/listwidget/
祝你好运!
Examples:
http://gwtquery-plugins.googlecode.com/svn/trunk/droppable/demo/GwtPortletSample/GwtPortletSample.html
Check out the project at:
http://code.google.com/p/gwtquery-plugins/wiki/DragAndDropPluginForGWTDeveloppers
I suggest you stay away from GXT (it can be pretty daunting to ingest GWT and GXT all at once, believe me!). Plain GWT should be enough for your app.
Pretty big project you have there. Also, don't start from scratch. Search a GWT project in code.google.com which is maintained for you to accelerate development. Here is one example using GWT + Maven + Objectify.
http://code.google.com/p/listwidget/
Good luck!