I've seen the GWT Expenses app from GWT SDK is using single module structure.

Is this a best practice? Are there any cons in having the project split into multiple maven modules, i.e:

  • client
  • shared
  • server

Thanks!

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

The GWT compiler and DevMode don't really care about how you structure your build system as long as all of the client and shared resources are available on the GWT classpath and the server components have been compiled into the webapp's WEB-INF/classes directory (or lib/foo.jar) if you're using DevMode's built-in Jetty server.

link|improve this answer
Yes, but having the server code in the same project(like GWT Expenses), makes the build slower if you only changed some server-side logic. In this case you'd only want to build and deploy the "server" module. – leadgy Feb 22 '11 at 15:28
I should have written: Configure your build environment in the way that makes sense for your project. – BobV Feb 22 '11 at 15:42
Thanks! I take it there are no cons in splitting the project like above. – leadgy Feb 23 '11 at 8:14
feedback

This is very similar to this question:

Do you use a single project for client and server side for GWT based apps or separate project?

link|improve this answer
Thanks for the additional infos I can find there! – leadgy Feb 28 '11 at 8:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.