Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to create gwt gae with app engine modules using google eclipse plugin

How to create a new GWT and GAE project with modules using google eclipse plugin in Java? I tried using make a new web applications from the eclipse, but it just create me a GWT and GAE project without modules.

Thanks.

like image 540
user1012283 Avatar asked Apr 24 '14 03:04

user1012283


People also ask

What is GWT plugin in Eclipse?

GWT Eclipse Plugin This plugin helps launch GWT development mode for debugging in browsers and/or mobile devices. It includes Maven integration for two of the GWT Maven plugins. And it has WTP server runtime integrat... Web, XML, Java EE and OSGi Enterprise Development, Web, Mobile and Device Development.

How to Configure GWT SDK in Eclipse?

Once you download and extract the SDK, You have to configure its location in Eclipse's Preferences. Go to Window > Preferences > Google > Web Toolkit and add the SDK there. do you see the SDK location configured in Preferences ?

How do I run the Google App Engine in Eclipse?

Run eclipse. To download and install the Cloud Tools for Eclipse plugin, select Help > Eclipse Marketplace... and search for Google Cloud. After installation, restart Eclipse when prompted to do so. In Eclipse, select the File menu > New > Google App Engine Standard Java Project.


1 Answers

You'll probably want to first create a WTP project using GPE, because to use modules you'll need to create an EAR project. This is described here:

https://developers.google.com/appengine/docs/java/webtoolsplatform

You'll create modules, which will each be a dynamic web project. Your GWT app will be one of those. And follow the instructions for modules here:

https://developers.google.com/appengine/docs/java/modules/

Note that there will be two Google related items when you right-click your project: Google and Google App Engine WTP. Commands related to app engine in the Google menu don't seem to work. Instead use the app engine related commands in the Google App Engine WTP menu.

like image 179
Mike Dee Avatar answered Oct 22 '22 19:10

Mike Dee