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

com.github.nicklaus4.db.datasource.ReaderDataSource Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package com.github.nicklaus4.db.datasource;

import java.util.function.Supplier;

import javax.sql.DataSource;

import org.springframework.jdbc.datasource.DelegatingDataSource;
import org.springframework.lang.Nullable;

/**
 * reader datasource
 *
 * @author weishibai
 * @date 2019/03/19 5:43 PM
 */
public class ReaderDataSource extends DelegatingDataSource {

    private final Supplier readerFactory;

    public ReaderDataSource(Supplier readerFactory) {
        this.readerFactory = readerFactory;
    }

    @Nullable
    @Override
    public DataSource getTargetDataSource() {
        return readerFactory.get();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy