Hi John,

If you have a large number of files in your WEB-INF/classes directory, that 
could possible be the significant factor in the slowness. Its not good to 
compare loading time on your development server and on production, mostly 
because accessing files on production take much longer than locally. A 
solution to this would be to load classes and resources from a small number 
of jar files rather than loading them from individual files.

I would recommend that you zip up the content of your WEB-INF/classes 
directory and store it in a single (or small number of) jar file(s) in 
WEB-INF/lib.  The only files that would need to remain in WEB-INF/classes 
are files that you want to *override*  from files that are already in a jar 
file.

Hope this helps!

Best,
Jose Montes de Oca

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine-java/-/DXK8fsEPJFgJ.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.

Reply via email to