servri连接到mariadb没有正确关闭(但在mysql5服务器上运行正常)

时间:2017-07-27 14:39:42

标签: java jdbc

我在较旧的mysql5数据库引擎上使用了相同的代码,我在那里没有这个问题(我也看到mysql5上的睡眠连接,但它不会导致“连接太多”问题)。但现在我将java servlet移动到mariadb 10.1服务器,我有这个代码,我认为与mysql(mariadb)数据库的连接是打开的,直到达到mariadb超时限制 - 所以这不好。我不知道为什么它不关闭conn.close();public void closeConnection()的连接。好吗?

package com.example.java_servlet.server.data_holders;

import com.mysql.jdbc.PreparedStatement;

import com.example.java_servlet.server.singleton.DBobject;
import com.example.java_servlet.server.singleton.DBresult;

import java.sql.*;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.HashMap;
import java.util.Map.Entry;

public class Database {
    private Connection conn;
    private final DBobject dBobject;


    public Database(DBobject dBobject) {
        this.dBobject = dBobject;
    }


    public static Database getInstance(DBobject dBobject) {
        Database db = new Database(dBobject);
        return db;
    }

public DBobject getDBobj(){
        return dBobject;
    }

    private Connection getConnection() throws SQLTimeoutException, ClassNotFoundException, SQLException {

        if (conn == null || (conn.isValid(31536) || conn.isClosed())) {
            conn = DriverManager.getConnection("jdbc:mysql://" + dBobject.urlDB//
                    + ":" + dBobject.port //
                    + "/" + dBobject.databaseName + //
                    "?autoReconnect=true&"//
                    + "failOverReadOnly=false&"//
                    + "maxReconnects=10&"//
                    + "useUnicode=true&"//
                    + "wait_timeout=31536000&"//
                    + "interactive_timeout=31536000&"//
                    + "characterEncoding=utf-8"//
            , dBobject.user, dBobject.pass);
        }

        return conn;
    }

    public void closeConnection() {
        try {
            conn.close();
        } catch (SQLException e) {
        }
        // destroyDrivers();
    }

    public boolean execute(String command) throws SQLTimeoutException, ClassNotFoundException, SQLException {
        boolean result = false;

        Statement statement = getConnection().createStatement();
        result = statement.executeUpdate(command) > 0;
        statement.close();

        return result;

    }

    public boolean executeNewProcedure(String command) throws SQLTimeoutException, ClassNotFoundException, SQLException {
        boolean result = false;

        Statement statement = getConnection().createStatement();
        result = statement.execute(command);
        statement.close();

        return result;

    }

    public DBresult getPrimaryKeys(String tableName) throws Exception {
        Exception err;
        DBresult result;
        ResultSet set = null;
        DatabaseMetaData meta = null;
        try {
            meta = getConnection().getMetaData();
            set = meta.getPrimaryKeys(null, null, tableName);
            result = DBresult.buildOnlyPK(set);
            err = null;

        } catch (Exception e) {
            err = e;
            e.printStackTrace();
            result = null;
        } finally {
            try {
                set.close();
            } catch (Exception e2) {
            }
        }
        if (err != null) {
            throw new RuntimeException(err);
        }
        return result;

    }

    public DBresult query(String query) throws Exception {
        Exception err;
        DBresult result;
        ResultSet set = null;
        Statement statement = null;
        try {
            statement = getConnection().createStatement();
            set = statement.executeQuery(query);
            result = DBresult.build(set);
            err = null;

        } catch (Exception e) {
            err = e;
            e.printStackTrace();
            result = null;
        } finally {
            try {
                set.close();
            } catch (Exception e2) {
            }
            try {
                statement.close();
            } catch (Exception e2) {
            }
        }
        if (err != null) {
            throw new RuntimeException(err);
        }
        return result;

    }

    public static void destroyDrivers() {
        try {
            Enumeration<Driver> drivers = DriverManager.getDrivers();
            while (drivers.hasMoreElements()) {
                Driver driver = drivers.nextElement();
                try {
                    // System.out.println(driver.toString());
                    DriverManager.deregisterDriver(driver);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        } catch (Exception e) {
        }
    }

    public static class BathItem {
        public String command;
        public HashMap<Integer, String> values;

        public static BathItem newInstance(String command) {
            BathItem item = new BathItem();
            item.command = command;
            item.values = new HashMap<Integer, String>();
            return item;
        }

        public void addValue(int key, double value) {
            values.put(key, String.valueOf(value));
        }

        public void addValue(int key, long value) {
            values.put(key, String.valueOf(value));
        }

        public void addValue(int key, int value) {
            values.put(key, String.valueOf(value));
        }

        public void addValue(int key, String value) {
            values.put(key, value);
        }

    }

    public void applyBath(ArrayList<BathItem> bath) throws SQLException, ClassNotFoundException {
        // ArrayList<String> bathList = new ArrayList<String>();
        final int batchSize = 100;
        String commandBase = null;
        PreparedStatement ps = null;
        int count = 0;

        for (BathItem bathItem : bath) {
            if (commandBase == null) {
                commandBase = bathItem.command;
                ps = (PreparedStatement) getConnection().prepareStatement(commandBase);
            } else if (!commandBase.equals(bathItem.command) || count > batchSize) {

                // if(count > batchSize){
                ps.executeBatch();
                count = 0;
                // }
                if (!commandBase.equals(bathItem.command)) {
                    commandBase = bathItem.command;
                    ps.close();
                    ps = (PreparedStatement) getConnection().prepareStatement(commandBase);
                }

            }
            for (Entry<Integer, String> set : bathItem.values.entrySet()) {
                ps.setString(set.getKey(), set.getValue());
            }
            ps.addBatch();
            count += 1;

        }
        if (count > 0) {
            ps.executeBatch();
        }
        ps.close();

    }
}

0 个答案:

没有答案