开发者

gwt multi-module vs single-module project

开发者 https://www.devze.com 2023-02-13 04:39 出处:网络
I\'ve seen the GWT Expenses app from GWT SDK is using single module开发者_JS百科 structure. Is this a best practice? Are there any cons in having the project split into multiple maven modules, i.e:

I've seen the GWT Expenses app from GWT SDK is using single module开发者_JS百科 structure.

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

  • client
  • shared
  • server


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消