Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Keine Operationen erlaubt, nachdem die Anweisung geschlossen wurde

Erstellen Sie eine Utility-Klasse für die Verbindungsverwaltung, um sie an einem einzigen Punkt in der gesamten Anwendung zu verwalten.

Laden Sie nicht die DataSource jedes Mal, wenn Sie eine neue Verbindung benötigen.

Beispielcode:

public class ConnectionUtil {

    private DataSource dataSource;

    private static ConnectionUtil instance = new ConnectionUtil();

    private ConnectionUtil() {
        try {
            Context initContext = new InitialContext();
            dataSource = (DataSource) initContext.lookup("JNDI_LOOKUP_NAME");
        } catch (NamingException e) {
            e.printStackTrace();
        }
    }

    public static ConnectionUtil getInstance() {
        return instance;
    }

    public Connection getConnection() throws SQLException {
        Connection connection = dataSource.getConnection();
        return connection;
    }

    public void close(Connection connection) throws SQLException {
        if (connection != null && !connection.isClosed()) {
            connection.close();
        }
        connection = null;
    }

}

Schließen Sie die Verbindung immer und behandeln Sie sie in try-catch-finally

        Connection conn = null;
        PreparedStatement stmt = null;
        ResultSet rs = null;
        try {
            conn = ConnectionUtil.getInstance().getConnection();

            ...
        } finally {
            if (rs != null) {
                rs.close();
            }
            if (stmt != null) {
                stmt.close();
            }
            if (conn != null) {
                ConnectionUtil.getInstance().close(conn);
            }
        }