GWT - 具有拖放操作的关系数据库

发布于 2024-10-28 01:24:20 字数 317 浏览 0 评论 0原文

我是一名学生,想与动态日程管理器一起制定最终草案。
建议在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挖鼻大婶 2024-11-04 01:24:20

对于拖放:

示例:
http://gwtquery-plugins.googlecode.com/svn /trunk/droppable/demo/GwtPortletSample/GwtPortletSample.html

查看该项目:
http://code.google.com/p/gwtquery-plugins/wiki/DragAndDropPluginForGWTDeveloppers

对于 GWT

我建议您远离 GXT(相信我,同时摄取 GWT 和 GXT 可能相当令人畏惧!)。普通 GWT 对于您的应用程序来说应该足够了。

对于域数据模型
坚持并不是那么容易的事。这一切都是你一个人在做吗?!我在让事情协调一致方面经历了很多麻烦。所以我建议你使用 Datanucleus 或 Hibernate 等持久性包。让您的数据模型尽可能简单,这会节省您的时间。

你那里有相当大的项目。另外,不要从头开始。在 code.google.com 中搜索 GWT 项目,该项目是为您加速开发而维护的。下面是一个使用 GWT + Maven + Objectify 的示例。

http://code.google.com/p/listwidget/

祝你好运!

For drag&drop:

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

For GWT

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.

For domain data model
Persistence is not that easy. Are you working all of this alone?! I've gone through a lot of trouble get things working together. So I suggest you use persistence packages like Datanucleus or Hibernate. Make your data model as simple as possible, it will save you time.

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!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文