web-dev-qa-db-ja.com

データベース接続にシングルトンクラスを使用する場合、1人のユーザーが全員の接続を閉じることはできますか?

データベース接続を取得するためのシングルトンクラスを作成しました。

ここで私の質問は次のとおりです。アプリケーションにアクセスするユーザーが100人いると仮定します。 1人のユーザーが接続を閉じた場合、他の99人のユーザーは接続が閉じられますか?

これは、データベース接続を取得するためにシングルトンクラスを使用する私のサンプルプログラムです。

public class GetConnection {

    private GetConnection() { }

    public Connection getConnection() {
        Context ctx = new InitialContext();
        DataSource ds = ctx.lookup("jndifordbconc");
        Connection con = ds.getConnection();
        return con;
    }

    public static  GetConnection   getInstancetoGetConnection () {
        // which gives GetConnection class instance to call getConnection() on this .
    }
}

案内してください。

16
hanhu

getConnection()呼び出しでsameConnectionインスタンスを返さない限り、心配することはありません。約。すべての呼び出し元は、独自のインスタンスを取得します。これまでのところ、すべてのgetConnection()呼び出しで新しい接続を作成しているため、静的変数またはインスタンス変数を返していません。だから安全です。

しかし、このアプローチは不器用です。シングルトンである必要はありません。ヘルパー/ユーティリティクラスもまったく問題ありません。または、もう少し抽象化したい場合は、接続マネージャーが抽象ファクトリーによって返されます。 getConnection()で毎回ではなく、クラスの初期化中に一度だけデータソースを取得するように変更します。とにかく毎回同じインスタンスです。安くしてください。基本的なキックオフの例を次に示します。

public class Database {

    private static DataSource dataSource;

    static {
        try {
            dataSource = new InitialContext().lookup("jndifordbconc");
        }
        catch (NamingException e) { 
            throw new ExceptionInInitializerError("'jndifordbconc' not found in JNDI", e);
        }
    }

    public static Connection getConnection() {
        return dataSource.getConnection();
    }

}

通常のJDBCイディオムに従って、次のように使用します。

public List<Entity> list() throws SQLException {
    List<Entity> entities = new ArrayList<Entity>();

    try (
        Connection connection = Database.getConnection();
        PreparedStatement statement = connection.prepareStatement("SELECT id, foo, bar FROM entity");
        ResultSet resultSet = statement.executeQuery();
    ) {
        while (resultSet.next()) {
            Entity entity = new Entity();
            entity.setId(resultSet.getLong("id"));
            entity.setFoo(resultSet.getString("foo"));
            entity.setBar(resultSet.getString("bar"));
            entities.add(entity);
        }
    }

    return entities;
}

こちらもご覧ください:

24
BalusC
package es.sm2.conexion;

import Java.sql.Connection;
import Java.sql.DriverManager;

public class ConexionTest {

    static Connection getConnection() throws Exception {

        String url = "jdbc:mysql://localhost:3306/";
        String dbName = "test";
        String driver = "com.mysql.jdbc.Driver";
        String userName = "userparatest";
        String password = "userparatest";

        Class.forName(driver).newInstance();
        Connection conn = DriverManager.getConnection(url + dbName, userName,password);

        return conn;
    }
}

接続を閉じるには

public static void closeConnection(Connection conn) {

        try {

            conn.close();

        } catch (SQLException e) {

        }

    }

接続を呼び出すには:

package conexion.uno;

import Java.sql.*;

import es.sm2.conexion.ConexionTest;

public class LLamadorConexion {

    public void llamada() {
        Connection conn = null;
        PreparedStatement statement = null;
        ResultSet resultado = null;
        String query = "SELECT * FROM empleados";

        try {
            conn = ConexionTest.getConnection();
            statement = conn.prepareStatement(query);
            resultado = statement.executeQuery();

            while (resultado.next()) {
                System.out.println(resultado.getString(1) + "\t" + resultado.getString(2) + "\t" + resultado.getString(3) + "\t" );
            }
        } 
        catch (Exception e) {
            System.err.println("El porque del cascar: " + e.getMessage());
        } 
        finally {
            ConexionTest.closeConnection(conn);

        }
    }
}
2
PauRibes

以下のコードは、Java用のテスト済みのシングルトンパターンです。

public class Database {

    private static Database dbIsntance;
    private static Connection con ;
    private static Statement stmt;


    private Database() {
      // private constructor //
    }

    public static Database getInstance(){
    if(dbIsntance==null){
        dbIsntance= new Database();
    }
    return dbIsntance;
    }

    public  Connection getConnection(){

        if(con==null){
            try {
                String Host = "jdbc:derby://localhost:1527/yourdatabasename";
                String username = "yourusername";
                String password = "yourpassword";
                con = DriverManager.getConnection( Host, username, password );
            } catch (SQLException ex) {
                Logger.getLogger(Database.class.getName()).log(Level.SEVERE, null, ex);
            }
        }

        return con;
    }

いずれかのクラスでConnectionを取得している間、単に以下の行を使用

Connection con = Database.getInstance().getConnection();

それが役立つことを願っています:)

1
farhangdon

素晴らしい投稿、farhangdon!ただし、一度接続を閉じると、新しい接続を開始する他の方法がないため、少し面倒です。ちょっとしたトリックがそれを解決します:

if(con==null)if(con==null || con.isClosed())に置き換えます

1
Mr. Demirel
import Java.sql.Connection;
import Java.sql.DriverManager;

public class sql11 {

    static Connection getConnection() throws Exception {
        Class.forName("com.mysql.jdbc.Driver");
        Connection c = DriverManager.getConnection("jdbc:mysql://localhost:3306/ics", "root", "077");
        return c;

    }
}
0
gayan rangana