Commit f35eec17 by 郑冰晶

数据库加密组件

parent 868afddb
...@@ -325,7 +325,7 @@ public class SecurityFilter extends FilterEventAdapter { ...@@ -325,7 +325,7 @@ public class SecurityFilter extends FilterEventAdapter {
protected void encryptStatement(StatementProxy statement, String sql) { protected void encryptStatement(StatementProxy statement, String sql) {
if (!(statement instanceof PreparedStatementProxy)) { if (!(statement instanceof PreparedStatementProxy)) {
log.debug("不需要处理的statement:{}", sql); log.debug("过滤statement:{}", sql);
return; return;
} }
...@@ -461,7 +461,7 @@ public class SecurityFilter extends FilterEventAdapter { ...@@ -461,7 +461,7 @@ public class SecurityFilter extends FilterEventAdapter {
} }
// 其他 // 其他
else { else {
log.warn("This sql type is not support to security !!! sql = {}",sql); log.warn("This sql is not supported for security !!! sql = {}",sql);
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment