-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMybatisPlusApplication.java
117 lines (97 loc) · 3.68 KB
/
MybatisPlusApplication.java
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
package com.example;
import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor;
import com.baomidou.mybatisplus.extension.plugins.handler.TenantLineHandler;
import com.baomidou.mybatisplus.extension.plugins.inner.DynamicTableNameInnerInterceptor;
import com.baomidou.mybatisplus.extension.plugins.inner.OptimisticLockerInnerInterceptor;
import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor;
import com.baomidou.mybatisplus.extension.plugins.inner.TenantLineInnerInterceptor;
import com.example.service.*;
import net.sf.jsqlparser.expression.Expression;
import net.sf.jsqlparser.expression.LongValue;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.WebApplicationType;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.context.annotation.Bean;
@SpringBootApplication
public class MybatisPlusApplication {
public static void main(String[] args) {
new SpringApplicationBuilder(MybatisPlusApplication.class)
.web(WebApplicationType.NONE)
.run(args);
}
// -------------------- 基础查询 -------------------- //
@Bean
public CommandLineRunner base() {
return new BaseMain();
}
@Bean
public CommandLineRunner wrapper() {
return new WrapperMain();
}
@Bean
public CommandLineRunner wrapperLambda() {
return new WrapperLambdaMain();
}
@Bean
public CommandLineRunner lambdaWrapper() {
return new LambdaWrapperMain();
}
@Bean
public CommandLineRunner activeRecord() {
return new ActiveRecordMain();
}
// -------------------- 插件 -------------------- //
public static final ThreadLocal<Long> TENANT = new ThreadLocal<>();
@Bean
public MybatisPlusInterceptor mybatisPlusInterceptor() {
MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
// TenantLineInnerInterceptor: 多租户
interceptor.addInnerInterceptor(new TenantLineInnerInterceptor(new TenantLineHandler() {
@Override
public Expression getTenantId() {
return new LongValue(TENANT.get());
}
@Override
public boolean ignoreTable(String tableName) {
return !tableName.startsWith("t_tenant");
}
}));
// PaginationInnerInterceptor: 分页
interceptor.addInnerInterceptor(new PaginationInnerInterceptor());
// DynamicTableNameInnerInterceptor: 动态表名
interceptor.addInnerInterceptor(new DynamicTableNameInnerInterceptor((sql, tableName) -> {
if (!"t_dt".equals(tableName)) {
return tableName;
}
return "t_dt_" + TENANT.get();
}));
// OptimisticLockerInnerInterceptor: 乐观锁
interceptor.addInnerInterceptor(new OptimisticLockerInnerInterceptor(true));
// BlockAttackInnerInterceptor: 防止全表更新或删除
// DataPermissionInterceptor: 数据权限
// ReplacePlaceholderInnerInterceptor
return interceptor;
}
@Bean
public CommandLineRunner page() {
return new PageMain();
}
@Bean
public CommandLineRunner tenant() {
return new TenantMain();
}
@Bean
public CommandLineRunner dynamicTable() {
return new DynamicTableMain();
}
@Bean
public CommandLineRunner lock() {
return new LockMain();
}
// -------------------- SqlInjector -------------------- //
@Bean
public CommandLineRunner sqlInjector() {
return new SqlInjectorMain();
}
}