Author: pete.muir(a)jboss.org
Date: 2009-09-23 17:56:11 -0400 (Wed, 23 Sep 2009)
New Revision: 3774
Modified:
examples/trunk/jsf/numberguess/readme.txt
Log:
update readme
Modified: examples/trunk/jsf/numberguess/readme.txt
===================================================================
--- examples/trunk/jsf/numberguess/readme.txt 2009-09-23 21:45:46 UTC (rev 3773)
+++ examples/trunk/jsf/numberguess/readme.txt 2009-09-23 21:56:11 UTC (rev 3774)
@@ -23,6 +23,8 @@
You can also execute the application in an embedded Tomcat 6 container:
mvn war:inplace tomcat:run -Ptomcat
+
+You'll can access the app at
http://localhost:9090
In both cases, any changes to assets in src/main/webapp take affect immediately. If
a change to a webapp configuration file is made, the application may
@@ -68,3 +70,33 @@
mvn war:exploded tomcat:redeploy -Ptomcat
mvn compile war:exploded tomcat:redeploy -Ptomcat
+The application is available at
http://localhost:8080/webbeans-numberguess
+
+== Launching Jetty embedded from Eclipse
+
+First, set up the eclipse environment:
+
+ mvn clean eclipse:clean eclipse:eclipse -Djetty-ide
+
+Next, put all the needed resources into the src/main/webapp
+
+ mvn war:inplace -Djetty-ide
+
+Now, you are ready to run the server in Eclipse; find the Start class in src/main/jetty,
and run it's
+main method as a Java Application. The server will launch. You'll find the
application at
+http://localhost:8080
+
+
+== Using Google App Engine
+
+First, set up the eclipse environment:
+
+ mvn clean eclipse:clean eclipse:eclipse -Dgae
+
+Make sure you have the Google App Engine Eclipse plugin installed.
+
+Next, put all the needed resources into the src/main/webapp
+
+ mvn war:inplace -Dgae
+
+Now, in Eclipse, you can either run the app locally, or deploy it to Google App Engine
\ No newline at end of file