Getting a thread-dump is one of the first steps in troubleshooting a misbehaving Java application. There are a few good ways todo this task but the easiest of them all is
kill -3 <PID>
This will send the thread-dump to your stdout logs.
Getting a thread-dump is one of the first steps in troubleshooting a misbehaving Java application. There are a few good ways todo this task but the easiest of them all is
This will send the thread-dump to your stdout logs.