/** * @return the connectionHandler */ public ConnectionHandler getConnectionHandler() { if (this.connectionHandler==null){ this.connectionHandler = new DataSourceConnectionHandler(dataSource); } return connectionHandler; }
@Override public Connection getConnection() throws SQLException { return getDataSource().getConnection(); }
protected ConnectionHandler getConnectionHandler() { return new DataSourceConnectionHandler(this.getDataSource()); }