Return-Path: Delivered-To: apmail-tomcat-users-archive@www.apache.org Received: (qmail 92368 invoked from network); 5 Nov 2007 17:55:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 Nov 2007 17:55:32 -0000 Received: (qmail 22050 invoked by uid 500); 5 Nov 2007 17:53:18 -0000 Delivered-To: apmail-tomcat-users-archive@tomcat.apache.org Received: (qmail 22032 invoked by uid 500); 5 Nov 2007 17:53:18 -0000 Mailing-List: contact users-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Users List" Delivered-To: mailing list users@tomcat.apache.org Received: (qmail 22021 invoked by uid 99); 5 Nov 2007 17:53:17 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Nov 2007 09:53:17 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [209.191.69.173] (HELO web33810.mail.mud.yahoo.com) (209.191.69.173) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 05 Nov 2007 17:53:20 +0000 Received: (qmail 60583 invoked by uid 60001); 5 Nov 2007 17:52:59 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Message-ID; b=UCQLzJHulKcsj4LIZMc+kI7U+jbPhqobAOGSueuQhJ6iWvyDXrJQl09MioyPUoC89qgJrwTVjZYS0T8N94LI6C8yvMDVsZuAYFZ/77I7rzPIMb3aJWyDUMGgX9mXlfuSdPTMYqW3O+LGfVEICdycehWDnjem45KL5izkoLc9pvs=; X-YMail-OSG: WpjzcnsVM1kO3wVPZ5j3FzWjLR.il0Rg7807EbjrH6.3ZS2cpsvkVjfBcCQEriXnkcgQxCzC4w-- Received: from [67.187.68.24] by web33810.mail.mud.yahoo.com via HTTP; Mon, 05 Nov 2007 09:52:59 PST X-Mailer: YahooMailRC/814.06 YahooMailWebService/0.7.152 Date: Mon, 5 Nov 2007 09:52:59 -0800 (PST) From: Wade Chandler Subject: Re: running! a servlet at tomcat startup To: Tomcat Users List MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Message-ID: <89806.54787.qm@web33810.mail.mud.yahoo.com> X-Virus-Checked: Checked by ClamAV on apache.org Shouldn't have a race condition on init. init should only be called one time before any client connection is allowed to be served for the servlet. Now, if a process is kicked off in another thread in init and proper locking isn't used and two things access resources or classes then a race condition might ensue, but otherwise I don't see the exact problem. Proper locking should always be used in code one writes or at least the APIs being used should be studied enough to know how a given use case will impact them. If caching is handled as needed and it is just a warm up prep of the cache then a single first connection will work fine. It depends on exactly what is going on. Wade ----- Original Message ---- From: Pid To: Tomcat Users List Sent: Monday, November 5, 2007 12:08:25 PM Subject: Re: running! a servlet at tomcat startup Wade Chandler wrote: > Yes, and in the listener I would then utilize some kind of other web client to actually perform a first request. You can use something like HttpClient or one of the command line text browsers and Runtime.exec. It would probably be easier than trying to simulate with some other means, but I may be wrong..especially if you already know what you are doing will work without having to have the extra client connection, but it would seem a lot less code to just have a config file you fill in and a client which makes a simple http web request. I hope the populating of the cache is done programmatically, rather than by making connections, because AFAIK the Context won't start serving pages until it's finished starting up. You could have a race condition if you're using a listener or a servlet init() method, if your populating starts before the pages are available. p > ----- Original Message ---- > From: "Caldarale, Charles R" > To: Tomcat Users List > Sent: Monday, November 5, 2007 10:39:47 AM > Subject: RE: running! a servlet at tomcat startup > > >> From: loredana loredana [mailto:loredana888888@yahoo.com] >> Subject: Re: running! a servlet at tomcat startup >> >> In case ur wondering why I used a servlet to fill >> the cache is because I need some variables like >> request.getContenxtPath, getRealPath() etc. > > Wouldn't a ServletContextListener be more appropriate for this kind of > activity? See section 10 of the servlet spec for details. > > - Chuck > > > THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE > PROPRIETARY > MATERIAL and is thus for use only by the intended recipient. If you > received this in error, please contact the sender and delete the e-mail > and its attachments from all computers. > > --------------------------------------------------------------------- > To start a new topic, e-mail: users@tomcat.apache.org > To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org > For additional commands, e-mail: users-help@tomcat.apache.org > > > > > > > --------------------------------------------------------------------- > To start a new topic, e-mail: users@tomcat.apache.org > To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org > For additional commands, e-mail: users-help@tomcat.apache.org > > --------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org For additional commands, e-mail: users-help@tomcat.apache.org --------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org For additional commands, e-mail: users-help@tomcat.apache.org