@Component
public class UreportMasterDataSource implements BuildinDatasource {
private static final String NAME = "默认数据源";
@Autowired
private DataSource dataSource;
@Override
public String name() {
return NAME;
}
@DS("master")
@Override
public Connection getConnection() {
try {
DynamicRoutingDataSource ds = (DynamicRoutingDataSource) dataSource;
return dataSource.getConnection();
} catch (SQLException e) {
throw new RuntimeException(e);
}
}
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34