Hi all,
I created a new project, tested it in localhost, everything was OK. So
I uploaded it:
------------------------------------------------------------
Reading application configuration data...
Beginning server interaction for myapp...
0% Creating staging directory
5% Scanning for jsp files.
8% Compiling jsp files.
11% Compiling java files.
20% Scanning files on local disk.
25% Initiating update.
28% Cloning 1 static files.
31% Cloning 56 application files.
40% Uploading 0 files.
90% Deploying new version.
95% Will check again in 1 seconds
98% Will check again in 2 seconds
99% Will check again in 4 seconds
99% Will check again in 8 seconds
99% Closing update: new version is ready to start serving.
99% Uploading index definitions.
Details:
Jan 24, 2010 3:15:22 PM org.apache.jasper.JspC processFile
INFO: Built File: /_default.jsp
Jan 24, 2010 3:15:22 PM org.apache.jasper.JspC processFile
INFO: Built File: /_pane_footer.jsp
Jan 24, 2010 3:15:22 PM org.apache.jasper.JspC processFile
INFO: Built File: /_pane_howitworks.jsp
Jan 24, 2010 3:15:22 PM org.apache.jasper.JspC processFile
INFO: Built File: /index.jsp
Note: /var/folders/CA/CAoAFlp6Ex8Ce58TO7dOuU+++TI/-Tmp-/
appcfg129071456909907182.tmp/WEB-INF/classes/org/apache/jsp/
_005fdefault_jsp.java uses unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
Update completed successfully.
Success.
Cleaning up temporary files...
------------------------------------------------------------
Man that's fast, considering ~12MB of jars (Spring 3.0, Sitemesh,
JSTL, App Engine). But when I opened it in my browser, the page loaded
(redirection worked from index.jsp -> /spring/index) but the page was
blank. I checked the log, no error. What's going on?
Here's the "web" directory structure (for "appcfg.sh update web"):
------------------------------------------------------------
WEB-INF/
classes/
META-INF/applicationContext.xml
com/foo/bar/*.class
lib/*.jar
appengine-web.xml
decorators.xml
dispatcher-servlet.xml
web.xml
_default.jsp
_pane_footer.jsp
_pane_howitworks.jsp
news.html
index.jsp
------------------------------------------------------------
And the appegine-web.xml:
------------------------------------------------------------
<?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
<application>myapp</application>
<version>1-snapshot</version>
<static-files>
<include path="/**.cod"/>
<include path="/**.css"/>
<include path="/**.jad"/>
<include path="/**.jar"/>
<include path="/**.js"/>
<include path="/images/**"/>
<include path="/scripts/**"/>
<include path="/styles/**"/>
<exclude path="/**.groovy"/>
<exclude path="/**.html"/>
</static-files>
</appengine-web-app>
------------------------------------------------------------
--
You received this message because you are subscribed to the Google Groups
"Google App Engine for Java" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine-java?hl=en.