DynamicDataSource.java 305 Bytes
package com.zhongzhi.common.configure;


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

public class DynamicDataSource extends AbstractRoutingDataSource {


    @Override
    protected Object determineCurrentLookupKey() {
        return DbContextHolder.getDbType();
    }
}