Java DataSource registerSpringDataSource(String name, DataSource dataSource)

Here you can find the source of registerSpringDataSource(String name, DataSource dataSource)

Description

register Spring Data Source

License

Open Source License

Declaration

static void registerSpringDataSource(String name, DataSource dataSource) 

Method Source Code

//package com.java2s;
/*/*from   w  w w. ja  va  2  s. c om*/
 * Copyright 2008-2012 by Emeric Vernat
 *
 *     This file is part of Java Melody.
 *
 * Java Melody is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Java Melody is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with Java Melody.  If not, see <http://www.gnu.org/licenses/>.
 */

import javax.sql.DataSource;

import java.util.LinkedHashMap;
import java.util.Map;

public class Main {
    private static final Map<String, DataSource> SPRING_DATASOURCES = new LinkedHashMap<String, DataSource>();

    static void registerSpringDataSource(String name, DataSource dataSource) {
        SPRING_DATASOURCES.put(name, dataSource);
    }
}

Related

  1. logQueryResultToFile(DataSource dataSource, String path, String sqlStatement, Object... boundVariables)
  2. lookupDataSource(String dataSourceName)
  3. lookupDataSource(String dataSourceName, final Hashtable jndiProperties)
  4. myDataSource(String username, String password)
  5. purgeTables(DataSource ds)
  6. selectCount(DataSource ds, String tableName)
  7. setUpJndiDatasource()
  8. sqlExe(DataSource dataSource, String sql)
  9. tableRecommendationExistsHsqdb(DataSource dataSource)