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

com.yuweix.kuafu.dao.datasource.DynamicDataSource Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package com.yuweix.kuafu.dao.datasource;


import org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource;


/**
 * @author yuwei
 */
public class DynamicDataSource extends AbstractRoutingDataSource {
    @Override
    protected Object determineCurrentLookupKey() {
        return DataSourceContextHolder.getDataSource();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy