JAVA RELATED ARTICLES

JDBC API

JDBC API

DataSource maintains a connection pool so that you can keep reusing the same connection rather than needing to get a new one each time.

Thread Safety Using CyclicBarrier

Thread Safety Using CyclicBarrier

The CyclicBarrier class allows us to perform complex, multithreaded tasks while all threads stop and wait at logical barriers. This solution is superior to  single-threaded solution, as the individual tasks can be completed in parallel

×