Java concurrent Programming principle and Combat 24: Simple database connection Pool

Source: Internet
Author: User

 Public classmyDataSource {Private StaticLinkedlist<connection> pool =NewLinkedlist<>(); Private Static Final intInit_connections = 10; Private Static FinalString driver_name = "Com.mysql.jdbc.Driver"; Private Static FinalString URL = ""; Private Static FinalString USER = ""; Private Static FinalString PASSWORD = ""; Static {        Try{class.forname (driver_name);  for(inti = 0; i < init_connections; i++) {Connection Connection=drivermanager.getconnection (URL, USER, PASSWORD);            Pool.addlast (connection); }        } Catch(Exception e) {e.printstacktrace (); }    }     PublicConnection getconnection () {synchronized(pool) { while(Pool.size () <= 0) {                Try{wait (); } Catch(interruptedexception e) {e.printstacktrace (); }            }            if(!Pool.isempty ()) {                returnPool.removefirst (); }        }        return NULL; }     Public voidreleaseconnection (Connection Connection) {if(Connection! =NULL) {            synchronized(Pool) {pool.addlast (connection);            Notifyall (); }        }    }}

Resources:

"Java Concurrent programming Combat" dragon Fruit College

Java concurrent Programming principle and Combat 24: Simple database connection Pool

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.