|
@@ -33,7 +33,7 @@ public class ProjectInterceptor implements InnerInterceptor {
|
|
String project = request.getHeader("project");
|
|
String project = request.getHeader("project");
|
|
if (StringUtils.isNotBlank(project)) {
|
|
if (StringUtils.isNotBlank(project)) {
|
|
String originSql = boundSql.getSql();
|
|
String originSql = boundSql.getSql();
|
|
- // 获取 Statement 执行sql的对象
|
|
|
|
|
|
+ //获取 Statement 执行sql的对象
|
|
Statement statement = null;
|
|
Statement statement = null;
|
|
try {
|
|
try {
|
|
statement = CCJSqlParserUtil.parse(originSql);
|
|
statement = CCJSqlParserUtil.parse(originSql);
|
|
@@ -56,7 +56,6 @@ public class ProjectInterceptor implements InnerInterceptor {
|
|
AndExpression andExpression = new AndExpression(where, projectEq);
|
|
AndExpression andExpression = new AndExpression(where, projectEq);
|
|
plainSelect.setWhere(andExpression);
|
|
plainSelect.setWhere(andExpression);
|
|
targetSql = plainSelect.toString();
|
|
targetSql = plainSelect.toString();
|
|
- System.out.println(targetSql);
|
|
|
|
}
|
|
}
|
|
// 修改完成的sql 再设置回去
|
|
// 修改完成的sql 再设置回去
|
|
PluginUtils.MPBoundSql mpBoundSql = PluginUtils.mpBoundSql(boundSql);
|
|
PluginUtils.MPBoundSql mpBoundSql = PluginUtils.mpBoundSql(boundSql);
|