org.redkalex.source.pgsql.PgsqlDataSourceProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redkale-plugins Show documentation
Show all versions of redkale-plugins Show documentation
Redkale-Plugins -- java framework
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package org.redkalex.source.pgsql;
import static org.redkale.source.DataSources.*;
import org.redkale.annotation.Priority;
import org.redkale.source.*;
import org.redkale.source.spi.DataSourceProvider;
import org.redkale.util.AnyValue;
/** @author zhangjx */
@Priority(-900)
public class PgsqlDataSourceProvider implements DataSourceProvider {
@Override
public boolean acceptsConf(AnyValue config) {
String dbtype = config.getValue("dbtype");
if (dbtype == null) {
AnyValue read = config.getAnyValue("read");
AnyValue node = read == null ? config : read;
dbtype = parseDbtype(node.getValue(DATA_SOURCE_URL));
}
return "postgresql".equalsIgnoreCase(dbtype);
}
@Override
public DataSource createInstance() {
return new PgsqlDataSource();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy