Re: Add GWT to an existing app engine project?

2016-02-16 Thread sdfdsf dsfsdfds
Thanks guys - didn't know about app engine and java8, but looks like they're working on it at least! (the video linked in comment #133) On Monday, February 15, 2016 at 8:43:31 AM UTC-5, Gilberto wrote: > > > Please note that App Engine (without the still-beta Managed VMs) doesn't > support Java

Re: Add GWT to an existing app engine project?

2016-02-15 Thread Gilberto
Please note that App Engine (without the still-beta Managed VMs) doesn't support Java 8 (and I don't think it will support anytime soon), so when GWT 2.8 comes out, you'll need to stick with Java 7 syntax. Take a look at this issue:

Add GWT to an existing app engine project?

2016-02-13 Thread sdfdsf dsfsdfds
Hi, I have an existing app engine project, and I'm not sure if it's possible to incorporate GWT without refactoring the package layout. My app engine project looks like this: /MyProject /src /main /java /com

Re: Add GWT to an existing app engine project?

2016-02-13 Thread Jens
You can use any package structure you want. Your server classes can be in any package but you must make sure that the GWT compiler does not see them. The GWT compiler only sees code that is included using in your *.gwt.xml file. By default GWT compiler looks in the package called "client"