本帖最后由 天堂的风 于 2023-11-13 09:52 编辑
贴一个免费的Mybatis Log插件:https://github.com/Link-Kou/intellij-mybaitslog.git
进入正题
下载 Mybatis Log插件(2023.10.1版本)
从这个按钮入手
当我们点击它时会调用 createToolWindowContent 方法,
发现只有当 bl2 == null 时才会跳转到 block14 ,然后执行 E.a(project, toolWindow);
所以我们只需要让 e_0.a(); 方法返回 null 就行。
然后去分析 class e_0 这个类发下如下方法
// a方法在上面被调用,我们需要返回null
public static boolean a() {...}
// 下面四个方法经过分析我们直接将返回值修改为true就行
public static boolean b() {...}
private static boolean a(String string) {...}
private static boolean b(String string) {...}
private static boolean c(String string) {...}
这里借助 javassist 生成修改后的class文件
public static void hookMethod() throws Exception {
ClassPool classPool = ClassPool.getDefault();
classPool.appendClassPath("D:\\mybatis-log.jar");
CtClass ctClass = classPool.get("e");
CtMethod aMethod = ctClass.getDeclaredMethod("a", new CtClass[]{});
aMethod.setBody("return null;");
String methodBody = "return true;";
CtMethod a2Method = ctClass.getDeclaredMethod("a", new CtClass[]{classPool.get("java.lang.String")});
a2Method.setBody(methodBody);
CtMethod b2Method = ctClass.getDeclaredMethod("b", new CtClass[]{});
b2Method.setBody(methodBody);
CtMethod bMethod = ctClass.getDeclaredMethod("b", new CtClass[]{classPool.get("java.lang.String")});
bMethod.setBody(methodBody);
CtMethod cMethod = ctClass.getDeclaredMethod("c", new CtClass[]{classPool.get("java.lang.String")});
cMethod.setBody(methodBody);
ctClass.writeFile("writefile");
}
使用下面命令将生成好的 e.class 文件替换掉jar包中的e.class
[Java] 纯文本查看 复制代码 jar uvf mybatis-log.jar e.class
最后再移除收费提示,修改jar包META-INF/plugin.xml将下面代码删除即可
[Java] 纯文本查看 复制代码 <product-descriptor code="PMYBATISLOG" release-date="20200501" release-version="202051"/>
|