On Dec 12, 7:04 am, Kanagaraj M <kanagaraj....@gmail.com> wrote:
> I am running a big GWT (Maven + Hibernate) application in dev mode
> (eclipse).
> My memory settings are
> *-Xmx1024M -XX:MaxPermSize=384m*
I think you should setup your package structure well. Preferable right
from the start as it overcomes GWT warnings/problems (I still have to
change some of my packages).
Example:
server-project:
com.bla.server
client-project:
com.bla.client
common-project:
com.bla.common
The server project will have the dependency to your framework
dependency you refer to and the client project that contains the gwt
stuff, won't.
Both project don't have direct dependencies to eachother, but both
client and server project do have dependencies to the common project.
BTW: I did put in a SSD a few weeks ago, and it wasn't the "Wauuuuu"
difference that I excepted, but it did improved some of course during
dev mode.
I think that to get fast compiles: it's a combination of things and I
noticed that RAM and cores are important.
- Ed