Java tutorial
/* * Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. * * WSO2 Inc. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except * in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.wso2.carbon.identity.oauth2.dao.util; import org.apache.commons.dbcp.BasicDataSource; import org.apache.commons.lang.StringUtils; import java.nio.file.Paths; import java.sql.Connection; import java.sql.SQLException; import java.util.HashMap; import java.util.Map; /** * DB Utils. */ public class DAOUtils { private static Map<String, BasicDataSource> dataSourceMap = new HashMap<>(); public static void initializeDataSource(String databaseName, String scriptPath) throws Exception { BasicDataSource dataSource = new BasicDataSource(); dataSource.setDriverClassName("org.h2.Driver"); dataSource.setUsername("username"); dataSource.setPassword("password"); dataSource.setUrl("jdbc:h2:mem:" + databaseName); try (Connection connection = dataSource.getConnection()) { connection.createStatement().executeUpdate("RUNSCRIPT FROM '" + scriptPath + "'"); } dataSourceMap.put(databaseName, dataSource); } public static Connection getConnection(String database) throws SQLException { if (dataSourceMap.get(database) != null) { return dataSourceMap.get(database).getConnection(); } throw new RuntimeException("Invalid datasource."); } public static String getFilePath(String fileName) { if (StringUtils.isNotBlank(fileName)) { return Paths.get(System.getProperty("user.dir"), "src", "test", "resources", "dbScripts", fileName) .toString(); } return null; } }