#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
- Goto directory you want the project.
- Rename parameter below
com.projectname.project
to a package naming scheme you like. - Rename parameter
new-project-name
to a project title you like. - 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
- Either run
mvn clean install
or EclipseProject Clean
##Running Running App Engine from the terminal.
mvn clean install
mvn appengine:devserver_start
- start web servermvn appengine:devserver_stop
- stop web server
##Eclipse WTP