09.03.2010 12:43, Alexander Skwar:

> Do you happen to have any idea, why I did not notice any impovements  
> in the 1st time load delay? Ie. why do I still have to wait 10s after  
> having deployed, before the login screen is shown for the first time?
> 
> At this point in time, the web app does not require the background  
> daemons at all. The login page is even shown, when those daemons are  
> down.

No idea.
What you could check (besides taking a look at your application to see
if it really is doing nothing that consumes time) is whether the
pre-compilation did work. In the deployed web-app you should notice a
change in web.xml, since the deployer creates additional servlet and
servlet-mapping entries. I. e. if your web-app contains a hello.jsp you
should see something like

[...]
    <servlet>
        <servlet-name>org.apache.jsp.hello_jsp</servlet-name>
        <servlet-class>org.apache.jsp.hello_jsp</servlet-class>
    </servlet>
[...]
    <servlet-mapping>
        <servlet-name>org.apache.jsp.hello_jsp</servlet-name>
        <url-pattern>/hello.jsp</url-pattern>
    </servlet-mapping>
[..]

in the web.xml generated by the deployer.

-- 
Regards
  mks

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to