g_nikolai Geschrieben 8. September 2004 Teilen Geschrieben 8. September 2004 Hallo ihr! ich hab da mal ne frage. Hat einer von euch schon mal was wegen Connection Pooling unter Java JDBC zu tun gehabt und kann mir da ein wenig weiterhelfen! Ich möchte eine KLasse entwickeln die SQL Connections verwaltet und je nach anfrage an die Klasse soll dann eine Connection genutzt werden oder erst geöffnet und gesichert werden und dann das Kommando abgesetzt werden. Zitieren Link zu diesem Kommentar Auf anderen Seiten teilen Mehr Optionen zum Teilen...
kingofbrain Geschrieben 8. September 2004 Teilen Geschrieben 8. September 2004 Servus, jeder ApplicationServer nutzt ConnectionPooling für JDBC Connections. Du könntest in deren Sourcen schauen (www.jboss.org). Im Prinzip ist es aber ganz einfach: Deine Klasse kann Connections halten (in irgendeiner Collection). Deine Klasse weiss, wieviele Connections sie halten darf (über eine Variable mitgeteilt). Deine Klasse verfügt über eine Methode, die eine Connection zurückliefert. Wenn diese Methode aufgerufen wird, schaust Du nach, ob Du bereits eine Connection übrig hast, die Du noch nicht weggegeben hast (das musst Du Dir auch irgendwo merken) oder ob Du eine erstellen musst. Fertig. Peter Zitieren Link zu diesem Kommentar Auf anderen Seiten teilen Mehr Optionen zum Teilen...
Habi Geschrieben 10. September 2004 Teilen Geschrieben 10. September 2004 Beispiel, ist schon etwas älter (2 Jahre), sollte aber seinen Zweck erfüllen... package de.emediaoffice.elk.database; //------------------------------------------------------------------ //--- Import //------------------------------------------------------------------ import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import java.util.Enumeration; import java.util.Hashtable; /** ****************************************************************** *** Module: CElkConnectionPool *** Description: Connection pooling class for elk database *** connections ****************************************************************** *** Copyright 2000, 2001 by Technical Office GmbH *** Copyright 2002 by EMedia Office GmbH ****************************************************************** *** @Author Timo Haberkern *** Created at: 17.08.2001 ****************************************************************** *** $Version: V.1.2.0 Build 317 $ *** $Date: Mittwoch, 19. November 2003 16:31:00 $ $Revision: 1.24 $ ****************************************************************** */ public class CElkConnectionPool extends Object { private Hashtable m_hashConnections; private int m_nIncrement; private String m_strDbURL; private String m_strDbUser; private String m_strDbPassword; /** **************************************************************** *** Constructor for initializing the connection pool **************************************************************** *** @param The JDBC URL of the database *** @param The user-name for the database *** @param The password for the database *** @param The name of the jdbc driver that is used for the pool *** @param The number of initial connections that are created *** @param The The number of new connections if the initial *** size is not enough **************************************************************** */ public CElkConnectionPool(String dbURL, String user, String password, String driverClassName, int initialConnections, int increment) throws SQLException, ClassNotFoundException { Class.forName(driverClassName); m_strDbURL = dbURL; m_strDbUser = user; m_strDbPassword = password; m_nIncrement = increment; m_hashConnections = new Hashtable(); //System.out.println("Database:"+dbURL+","+user+","+password+","+increment); for(int nIndex=0; nIndex < initialConnections; nIndex++) { m_hashConnections.put(DriverManager.getConnection(m_strDbURL, m_strDbUser, m_strDbPassword), Boolean.FALSE); } } /** **************************************************************** *** Delivers a connection from the pool **************************************************************** *** @return The connection from the pool **************************************************************** */ public Connection getConnection() throws SQLException { Connection curConnection = null; Enumeration conKeys = m_hashConnections.keys(); synchronized (m_hashConnections) { while(conKeys.hasMoreElements()) { curConnection = (Connection)conKeys.nextElement(); Boolean b = (Boolean)m_hashConnections.get(curConnection); if(b==Boolean.FALSE) { try { curConnection.setAutoCommit(true); } catch(SQLException e) { curConnection=DriverManager.getConnection(m_strDbURL, m_strDbUser, m_strDbPassword); } m_hashConnections.put(curConnection, Boolean.TRUE); return curConnection; } } } for(int nIndex = 0; nIndex < m_nIncrement; nIndex++) { m_hashConnections.put(DriverManager.getConnection(m_strDbURL, m_strDbUser, m_strDbPassword), Boolean.FALSE); } return getConnection(); } /** **************************************************************** *** Puts a connection back to the pool **************************************************************** *** @param The connection that is returned to the pool **************************************************************** */ public void returnConnection(Connection returned) { Connection curConnection; Enumeration conKeys = m_hashConnections.keys(); while(conKeys.hasMoreElements()) { curConnection = (Connection)conKeys.nextElement(); if(curConnection == returned) { m_hashConnections.put(curConnection, Boolean.FALSE); break; } } } public void releaseAllConnections() { Connection curConnection = null; Enumeration conKeys = m_hashConnections.keys(); synchronized (m_hashConnections) { while(conKeys.hasMoreElements()) { curConnection = (Connection)conKeys.nextElement(); try { if (curConnection.isClosed() == false) curConnection.close(); } catch (Exception ignored) { } } } } } Zitieren Link zu diesem Kommentar Auf anderen Seiten teilen Mehr Optionen zum Teilen...
akull82 Geschrieben 15. September 2004 Teilen Geschrieben 15. September 2004 schau bir mal die commons-dbcp von jankata an Zitieren Link zu diesem Kommentar Auf anderen Seiten teilen Mehr Optionen zum Teilen...
Oortael Geschrieben 17. September 2004 Teilen Geschrieben 17. September 2004 schau dir mal die interfaces vom javax.sql Package an. Da gibts das PooledConnection und ConnectionPoolDataSource Zitieren Link zu diesem Kommentar Auf anderen Seiten teilen Mehr Optionen zum Teilen...
Empfohlene Beiträge
Dein Kommentar
Du kannst jetzt schreiben und Dich später registrieren. Wenn Du ein Konto hast, melde Dich jetzt an, um unter Deinem Benutzernamen zu schreiben.