24
24
import java .util .Arrays ;
25
25
import java .util .HashMap ;
26
26
import java .util .Map ;
27
-
28
27
import javax .sql .DataSource ;
29
28
30
- import org .apache .commons .dbcp .BasicDataSource ;
31
-
29
+ import com .dangdang .ddframe .rdb .sharding .api .HintShardingValueManager ;
32
30
import com .dangdang .ddframe .rdb .sharding .api .ShardingDataSource ;
33
31
import com .dangdang .ddframe .rdb .sharding .api .rule .BindingTableRule ;
34
32
import com .dangdang .ddframe .rdb .sharding .api .rule .DataSourceRule ;
38
36
import com .dangdang .ddframe .rdb .sharding .api .strategy .table .TableShardingStrategy ;
39
37
import com .dangdang .ddframe .rdb .sharding .example .jdbc .algorithm .ModuloDatabaseShardingAlgorithm ;
40
38
import com .dangdang .ddframe .rdb .sharding .example .jdbc .algorithm .ModuloTableShardingAlgorithm ;
39
+ import org .apache .commons .dbcp .BasicDataSource ;
41
40
// CHECKSTYLE:OFF
42
41
public final class Main {
43
42
@@ -47,6 +46,8 @@ public static void main(final String[] args) throws SQLException {
47
46
printSimpleSelect (dataSource );
48
47
System .out .println ("--------------" );
49
48
printGroupBy (dataSource );
49
+ System .out .println ("--------------" );
50
+ printHintSimpleSelect (dataSource );
50
51
}
51
52
52
53
private static void printSimpleSelect (final DataSource dataSource ) throws SQLException {
@@ -79,6 +80,27 @@ private static void printGroupBy(final DataSource dataSource) throws SQLExceptio
79
80
}
80
81
}
81
82
83
+ private static void printHintSimpleSelect (final DataSource dataSource ) throws SQLException {
84
+ String sql = "SELECT i.* FROM t_order o JOIN t_order_item i ON o.order_id=i.order_id" ;
85
+
86
+ try (
87
+ Connection conn = dataSource .getConnection ();
88
+ PreparedStatement pstmt = conn .prepareStatement (sql )) {
89
+ HintShardingValueManager .init ();
90
+ HintShardingValueManager .registerShardingValueOfDatabase ("t_order" , "user_id" , 10 );
91
+ HintShardingValueManager .registerShardingValueOfTable ("t_order" , "order_id" , 1001 );
92
+ try (ResultSet rs = pstmt .executeQuery ()) {
93
+ while (rs .next ()) {
94
+ System .out .println (rs .getInt (1 ));
95
+ System .out .println (rs .getInt (2 ));
96
+ System .out .println (rs .getInt (3 ));
97
+ }
98
+ }
99
+ } finally {
100
+ HintShardingValueManager .clear ();
101
+ }
102
+ }
103
+
82
104
private static ShardingDataSource getShardingDataSource () throws SQLException {
83
105
DataSourceRule dataSourceRule = new DataSourceRule (createDataSourceMap ());
84
106
TableRule orderTableRule = new TableRule ("t_order" , Arrays .asList ("t_order_0" , "t_order_1" ), dataSourceRule );
0 commit comments