Skip to content

Latest commit

 

History

History
 
 

appengine-basic-guice

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

#GWT Basic with RPC using App Engine and Guice

This is a very basic GWT archetype and has a simple RPC setup using App Engine and Guice Dependency Injection.

##More App Engine Archetypes

##Maven Archetype Usage

  1. Goto directory you want the project.
  2. Rename parameter below com.projectname.project to a package naming scheme you like.
  3. Rename parameter new-project-name to a project title you like.
  4. Run the mvn archetype generator below.
  • This project Project.gwt.xml module name is hard coded and will will not be changed from the parameters below at this time.
mvn archetype:generate -DarchetypeGroupId=com.github.branflake2267.archetypes \
-DarchetypeRepository=https://oss.sonatype.org/content/repositories/snapshots \
-DarchetypeArtifactId=appengine-basic-guice-archetype \
-DarchetypeVersion=1.0-SNAPSHOT \
-DgroupId=com.projectname.project \
-DartifactId=new-project-name 

###IDE Import

##After Import

  1. Either run mvn clean install or Eclipse Project Clean

##Running Running App Engine from the terminal.

  • mvn clean install
  • mvn appengine:devserver_start - start web server
  • mvn appengine:devserver_stop - stop web server

##Eclipse WTP