Re: Servlet init method called multiple times

2013-10-23 Thread Igor Urisman
Print the call stack from a subsequent init()? On Wed, Oct 23, 2013 at 8:33 AM, Richard Pierce < rpie...@empoweredbenefits.com> wrote: > Hey Chris. I wish it was, that would be an easy fix. It's not- grepped the > whole codebase for it, and visually inspected these servlets. > > -Richard > > > >

Re: Servlet init method called multiple times

2013-10-23 Thread David Bullock
One of your servlet's methods is throwing an unchecked exception (very possibly, from the init() method itself), causing the container to trash the instance of your servlet and construct a new one (verify by printing out System.identityHashCode(this) in your log message), Most likely, your init(Ser

Re: Servlet init method called multiple times

2013-10-23 Thread Richard Pierce
Hey Chris. I wish it was, that would be an easy fix. It's not- grepped the whole codebase for it, and visually inspected these servlets. -Richard On 10/23/13 11:27 AM, "Christopher Schultz" wrote: >-BEGIN PGP SIGNED MESSAGE- >Hash: SHA256 > >Richard, > >On 10/22/13 6:57 PM, Richard P

Re: Servlet init method called multiple times

2013-10-23 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Richard, On 10/22/13 6:57 PM, Richard Pierce wrote: > The init() method of all of my servlets is being called every 10 > seconds or so. I verified this by adding a System.out to the init() > methods of my servlets. However, the server is not restar

Re: Servlet init method called multiple times

2013-10-23 Thread Konstantin Kolinko
2013/10/23 Caldarale, Charles R : >> From: Richard Pierce [mailto:rpie...@empoweredbenefits.com] >> Subject: Servlet init method called multiple times > >> The init() method of all of my servlets is being called every 10 seconds or >> so. >> I verified this b

RE: Servlet init method called multiple times

2013-10-22 Thread Caldarale, Charles R
> From: Richard Pierce [mailto:rpie...@empoweredbenefits.com] > Subject: Servlet init method called multiple times > The init() method of all of my servlets is being called every 10 seconds or > so. > I verified this by adding a System.out to the init() methods of my servlet

Re: Servlet init method called multiple times

2013-10-22 Thread Richard Pierce
Hey Andre, thanks for any help you can provide. Nothing in the tomcat logs, just server startup spam and then the log lines from the init methods server.xml: On 10/22/13 7:42 PM, "André

Re: Servlet init method called multiple times

2013-10-22 Thread André Warnier
Richard Pierce wrote: The init() method of all of my servlets is being called every 10 seconds or so. I verified this by adding a System.out to the init() methods of my servlets. However, the server is not restarting- just init gets recalled, even with no load on the box at all. I have no ide

Servlet init method called multiple times

2013-10-22 Thread Richard Pierce
The init() method of all of my servlets is being called every 10 seconds or so. I verified this by adding a System.out to the init() methods of my servlets. However, the server is not restarting- just init gets recalled, even with no load on the box at all. I have no idea where to begin debuggi