All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.smart.data.repository.configuration.H2EmbeddedDatasourceConfig Maven / Gradle / Ivy

There is a newer version: 4.0.14-RELEASE
Show newest version
package org.smart.data.repository.configuration;

import org.h2.jdbcx.JdbcDataSource;

import javax.sql.DataSource;

/**
 * @author Ranzy Blessings (2017/05/30)
 */
public class H2EmbeddedDatasourceConfig {

    public static DataSource h2Datasource() {
        JdbcDataSource jdbcDataSource = new JdbcDataSource();
        jdbcDataSource.setURL("jdbc:h2:~/test");
        jdbcDataSource.setUser("sa");
        jdbcDataSource.setPassword("sa");
        return jdbcDataSource;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy