Can I use Google modules with the Google plugin for Eclipse?

My goal is to develop Java applications that use the new Google modules. Id like to use the Google Plugin for Eclipse because it is easy to debug and upload to Google.

The problem is that I cannot say whether it is possible to use Google Plugin for Eclipse Java applications using Google modules.

According to this comment, you can use Google modules with the Eclipse web tool platform with the Google App Engine. And according to this documentation , the Eclipse Web Tools platform with the Google App Engine is a component included in the Google Eclipse Plugin. But does this mean that you can use Google Plugin for Eclipse Java applications that use Google modules?

+2
java eclipse google-app-engine google-eclipse-plugin google-plugin-eclipse
source share
1 answer

Yes, that’s exactly what this comment says.

When creating a new dynamic web project, make sure you select "Add Project to EAR" and select an existing EAR project or create a new one:

Dynamic Web Project dialog

Essentially, you will have a separate dynamic web project for each module, and an EAR project is a container for all these modules.

Now that you want to run your entire “modular” application, right-click the EAR project and choose Run As> Run On Server.

+3
source share

All Articles