Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

A lot of threads in java process

Why does a simple Java GUI application create so many threads?

enter image description here

like image 307
zim32 Avatar asked Dec 06 '22 21:12

zim32


2 Answers

Java uses threads for a lot of things:

  • The application's main thread, of course
  • Any threads the application starts (e.g. SwingWorker)
  • Swing has a separate Event dispatch thread as well as some other housekeeping threads
  • Timers, some of which may get started implicitly
  • One or more threads for Garbage collection
  • I think there's usually a separate thread prepared to run shutdown hooks
  • Other JVM-internal things
like image 157
Michael Borgwardt Avatar answered Dec 10 '22 13:12

Michael Borgwardt


A Simple Java Swing GUI has following Threads:

Thread [AWT-Shutdown] (Suspended)   
Object.wait(long) line: not available [native method] [local variables unavailable] 
Object.wait() line: 485 
AWTAutoShutdown.run() line: 265 
Thread.run() line: 619  

Daemon Thread [AWT-Windows] (Suspended) 
WToolkit.eventLoop() line: not available [native method] [local variables unavailable]  
WToolkit.run() line: 295    
Thread.run() line: 619  

Thread [AWT-EventQueue-0] (Suspended)   
Object.wait(long) line: not available [native method] [local variables unavailable] 
EventQueue(Object).wait() line: 485 
EventQueue.getNextEvent() line: 479 
EventDispatchThread.pumpOneEventForFilters(int) line: 236   
EventDispatchThread.pumpEventsForFilter(int, Conditional, EventFilter) line: 184    
EventDispatchThread.pumpEventsForHierarchy(int, Conditional, Component) line: 174   
EventDispatchThread.pumpEvents(int, Conditional) line: 169  
EventDispatchThread.pumpEvents(Conditional) line: 161   
EventDispatchThread.run() line: 122 

Thread [DestroyJavaVM] (Suspended)  
like image 29
oliholz Avatar answered Dec 10 '22 11:12

oliholz