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
>
>
>
>
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
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
-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
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 by adding a System.out to the init() met
> 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 servlets.
Add a stack trace
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é
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