Answer by Vijay Sarin for gwt beginner- how to organise+store code in java...
Please refer to the following Link for packaging an Enterprise Applicationhttp://code.google.com/webtoolkit/articles/mvp-architecture.htmlI hope this helps you. Also, its a good practice of using Maven...
View ArticleAnswer by Jasper Sprengers for gwt beginner- how to organise+store code in...
I suggest that you organize your code in three packages:- client package for all code that is compiled by the GWT compiler and not used server-side- server package for code that is exclusively used...
View ArticleAnswer by kosmičák for gwt beginner- how to organise+store code in java web...
Am I correct in thinking that the above type of app can be created as a combination of GWT and Java code?GWT is Java code, the client part will be compiled into Javascript. You can use any Java API in...
View ArticleAnswer by erogol for gwt beginner- how to organise+store code in java web app...
you can use eclipse for all gwt app. it has good plugin for it comes with gui. you also need to install a app engine to you browsers while testing.It will be suggested when you try to test the code in...
View Articlegwt beginner- how to organise+store code in java web app that uses gwt for...
I am working on a Java web app- it will use GWT for the front end.I understand that for the package com.abc.xyz, client side code will be in com/abc/xyz/client, while server side code will be in...
View Article