ExecutorService不關(guān)閉會(huì)怎樣,或者怎么樣保證web項(xiàng)目的公用線程池在項(xiàng)目結(jié)束時(shí)在關(guān)閉?
認(rèn)證高級(jí)PHP講師
If you don’t actively close the thread pool, there will be some dormant threads in the pool, which will usually be shut down after 1 minute.
So if a thread pool is used in a web project, it is best to turn off the initialized thread pool in the ServletContextListener.destroy method, usually using shutdown()
或 shutdownNow()
,如果做得完善些,可以再加上 awaitTermination
such processing.