Reputation: 9400
We're going to develop a brand new software for our customer. While evaluating different technologies, the most interesting I found is Google App Engine cloud service. This will keep all the system engineering complexity management out of my mind I think. The price is more work on the code: the eventual consistency of the datastore, and so on.
Google Web Toolkit looks as the best companion to GAE, too. I just deployed an hello world.
Usually, when I'm going deep in a new technology, I write a simple CRUD for a table with a few simple fields. Here's what I think I will need:
Can anyone address me in the right direction? Or better, a good crud example?
Upvotes: 0
Views: 1935
Reputation: 6054
This is one of examples created by me, hope it helps,
http://code.google.com/p/gwtcrudapp/
Upvotes: 0
Reputation: 15390
I think this question's been answered already. I like the stockwatcher tutorial also. It will also show you how to migrate to GAE once you're done.
An example of a Google Web Toolkit (GWT) Create Read Update and Delete (CRUD) Application
Upvotes: 1