Noor
Noor

Reputation: 20150

GWT Background Study For Project help!

I am currently doing a project on GWT and in the background study, I need to perform research on GWT. I have included many things which I will list below. Can anyone point out something that I may be missing or what other interesting thing concerning GWT I can include? The following is a list of all the topics that are currently included:

Upvotes: 2

Views: 531

Answers (4)

user467871
user467871

Reputation:

Here my additions may be helpful to you

Upvotes: 2

Gursel Koca
Gursel Koca

Reputation: 21300

If you are planning to use Spring , on server side, you should consider gwt-spring integration.

although, gwt designers do not provide reflection and recommend not to use the reflection, using reflection is inevitable, and if you use carefully, its cost is bearable..

Upvotes: 1

Abdullah Jibaly
Abdullah Jibaly

Reputation: 54790

You may want to take a look into UiBinder and RequestFactory as well as some of the development and testing tools such as GWT Designer and Speed Tracer.

Upvotes: 1

bakkal
bakkal

Reputation: 55448

I am not sure if it is implicitly included in one of the points you listed but :

Client Bundle

The resources in a deployed GWT application can be roughly categorized into resources to never cache (.nocache.js), to cache forever (.cache.html), and everything else (myapp.css). The ClientBundle interface moves entries from the everything-else category into the cache-forever category.

Upvotes: 1

Related Questions