Re: myfaces slow startup on GAE

2012-05-22 Thread Leonardo Uribe
Hi You need to take a look at: org.apache.myfaces.spi.FacesConfigResourceProvider org.apache.myfaces.spi.FaceletConfigResourceProvider org.apache.myfaces.spi.AnnotationProvider http://myfaces.apache.org/core21/myfaces-impl/apidocs/org/apache/myfaces/spi/FacesConfigResourceProvider.html http://my

Re: myfaces slow startup on GAE

2012-05-22 Thread lucio piccoli
hi leonardo thanks for the help but there was no difference in startup time. from the log the big time expense is scanning for faces-config.xml. org.apache.myfaces.config.DefaultFacesConfigurationProvider getClassloaderFacesConfig what other options are there to prevent file scanning? -lp

Re: myfaces slow startup on GAE

2012-05-22 Thread Leonardo Uribe
Hi MyFaces provides some SPI interfaces that allow to provide web container specific code in cases like annotation scannig or when it tries to locate faces-config.xml or .taglib.xml files. But first of all, try to setup this web config param: org.apache.myfaces.annotation.SCAN_PACKAGES Indicate

Re: myfaces slow startup on GAE

2012-05-22 Thread lucio piccoli
the spring issue is exclusive to the myfaces startup. the myfaces startup seems to be spending its time doing a file scan for 'faces-config.xml' and other stuff. File access speed is known to be poor on GAE. so is there a way to config myfaces not to file scan? -lp On 22 May 2012 17:07, Daniel

Re: myfaces slow startup on GAE

2012-05-22 Thread Daniel Reznick
Before that, Know that Spring and JSF are known for their SLOW start up time on GAE (I think especially Sping) a short googling can show this , and maybe some tricks to speed it up (but it still will be slow...) On Tue, May 22, 2012 at 5:13 AM, lucio piccoli wrote: > hi guys > > i am running my