Tag Archives: Thread

JBoss App Server Memory and Thread Info Using JMX Console


JBoss AS (Application Server) provides some useful information through its JMX console that’d be helpful in understanding the deployed applications and doing some performance tuning. The provided information include server performance, how much memory is used, the total CPU time each thread has used etc.. How to know all this info? Open the below URL […]

java.lang.OutOfMemoryError: unable to create new native thread


If you see this error, then there’s most likely an issue with the thread handling in your application. I faced this issue in one of our apps, while deploying it as a WAR deployable in JBoss. This is how we debugged the issue: The same app was running as a stand-alone and was working fine […]