摘要:
CountDownLatch,一个同步辅助类,在完成一组正在其他线程中执行的操作之前,它允许一个或多个线程一直等待。主要方法public CountDownLatch(int count);public voidcountDown();public voidawait() throwsInterru... 阅读全文
摘要:
线程中断主要设涉及3个方法:实例方法interrupt、静态方法interrupted、实例方法isInterrupted:实例方法interrupt作用:此方法调用后,如果调用实例线程当前正在调用wait、join、sleep、或在可中断的InterruptibleChannelIO操作、或阻塞在... 阅读全文
摘要:
## This file is detritus from various testing attempts# the values below may change, and often do not represent# reasonable values for the parameters.... 阅读全文
摘要:
c3p0号称是java界最好的数据池。c3p0的配置方式分为三种,分别是1.setters一个个地设置各个配置项2.类路径下提供一个c3p0.properties文件3.类路径下提供一个c3p0-config.xml文件我们主要说下c3p0-config.xml配置://默认池配置 rootjava... 阅读全文