blob: f9f20912cec4b31ecd94156b52fc041f88acd86c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package com.nis.datasource;
import org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource;
public class DynamicDataSource extends AbstractRoutingDataSource {
@Override
protected Object determineCurrentLookupKey() {
return CustomerContextHolder.getCustomerType();
}
}
|