All Projects → Link-Kou → Intellij Mybaitslog

Link-Kou / Intellij Mybaitslog

Licence: mit
用于在IDEA将Mybatis的SQL日志还原为可执行的SQL,Used to restore Mybatis SQL logs to executable SQL in IDEA,

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Intellij Mybaitslog

intellij-treeInfotip
IDEA项目结构树中的节点添加显示自定义备注文本IDEA DirectoryNode adds custom text for display
Stars: ✭ 48 (-90.42%)
Mutual labels:  idea, intellij-plugin, idea-plugin
Idea Conventional Commit
Context and template-based completion for conventional/semantic commits.
Stars: ✭ 115 (-77.05%)
Mutual labels:  intellij-plugin, idea, idea-plugin
intelliroutes
Support for Play Routes in IntelliJ IDEA
Stars: ✭ 21 (-95.81%)
Mutual labels:  idea, intellij-plugin, idea-plugin
mybatis-plus-plugin
idea plugin
Stars: ✭ 115 (-77.05%)
Mutual labels:  idea, mybatis
markdown-editor
IntelliJ Platform A full-featured WYSIWYG editor for markdown
Stars: ✭ 92 (-81.64%)
Mutual labels:  intellij-plugin, idea-plugin
tongyimall
高仿小米商城用户端,是Vue + SpringBoot的前后端分离项目,包括首页门户、商品分类、首页轮播、商品展示、购物车、地址管理等部分。管理端在另一个仓库。
Stars: ✭ 55 (-89.02%)
Mutual labels:  idea, mybatis
uuid-generator-plugin
An IntelliJ Idea plugin to generate UUID (Universally Unique Identifier), ULID (Universally Unique Lexicographically Sortable Identifier) and CUID (Collision Resistant Unique Identifier)
Stars: ✭ 30 (-94.01%)
Mutual labels:  idea, idea-plugin
mybatis-generator-plugin
MyBatis 生成模板代码的逻辑以插件的形式部署
Stars: ✭ 25 (-95.01%)
Mutual labels:  intellij-plugin, mybatis
intellij-ui-test-robot
The library allows you to write and execute UI tests among IntelliJ IDEA. You can test your Plugin.
Stars: ✭ 60 (-88.02%)
Mutual labels:  intellij-plugin, idea-plugin
material-design-color-palette
🎨Material Design color palette pluin for IntelliJ based IDEs.
Stars: ✭ 19 (-96.21%)
Mutual labels:  idea, intellij-plugin
aw-watcher-jetbrains
This extension allows the open source tracking tool ActivityWatch to keep track of the projects and coding languages you use in jetbrains IDEs.
Stars: ✭ 36 (-92.81%)
Mutual labels:  idea, idea-plugin
sbt-idea-example
SBT based IntellJ plugin template project
Stars: ✭ 20 (-96.01%)
Mutual labels:  intellij-plugin, idea-plugin
Yapiideauploadplugin
yapi idea 上传插件,快速生成文档
Stars: ✭ 288 (-42.51%)
Mutual labels:  idea, idea-plugin
idea-return-highlighter
Highlight return keywords.
Stars: ✭ 24 (-95.21%)
Mutual labels:  intellij-plugin, idea-plugin
ansible-vault-editor-idea-plugin
Ansible Vault Editor IntelliJ Plugin with auto encryption/decryption
Stars: ✭ 29 (-94.21%)
Mutual labels:  intellij-plugin, idea-plugin
NutzCodeInsight
Intellij idea plugin for Nutz Web Framwork
Stars: ✭ 35 (-93.01%)
Mutual labels:  idea, idea-plugin
IntelliJ-IDEA-Translate2Chinese
Chinese ​(Simplified)​ Language Pack EAP v201.15 魔改进行中...
Stars: ✭ 14 (-97.21%)
Mutual labels:  idea, intellij-plugin
Texify Idea
LaTeX support for the IntelliJ platform by JetBrains.
Stars: ✭ 436 (-12.97%)
Mutual labels:  intellij-plugin, idea
RedsoftYapiUpload
一个快速生成接口文档的IntelliJ IDEA的Yapi上传小插件,如果给你带来了方便,请给个Star 谢谢
Stars: ✭ 51 (-89.82%)
Mutual labels:  idea, idea-plugin
seckill parent
基于springboot+springcloud的高并发和商品秒杀项目,通过redis,rabbitmq等技术实现秒杀的高并发。
Stars: ✭ 59 (-88.22%)
Mutual labels:  idea, mybatis

Mybatislog

2020.08.11 《IDEA 2020.2 测试通过支持使用。》

2020.08.25 重构代码所有代码,代码中完善备注信息

2020.09.19 添加对特点类型的引号支持

2020.10.07 支持2020.2.3版本

2020.11.20 改进分隔判断,由单纯通过,判断会存在无法对文本正常分隔的情况下。

2020.12.18 改进Like判断异常(解决还不够优雅,不影响正常使用)。

2020.12.19 添加可选是否格式化。

2021.01.18 支持IDEA:2020.3.1,Master代码升级到IDEA2020.3.1版本(JAVA_11版本)

2021.01.31 发布2.0包。不向下兼容IDEA:2020.3以下版本,拥抱Java11,代码将保持兼容度,如果需要2020.3以下包支持,自行编译以下。

2021.02.11 发布2.0.1包。修复兼容性问题,不兼容还是会有不少后遗症。

Mybatislog能做什么?

Mybatislog是基于IntelliJ 开发的项目,用来格式化输出Mybatis的Sql。

样列

样列

--  1  2020.04.10 23:30:19 CST DEBUG com.cms.dao.ProductTypeConfigTitleDao.queryAll - ==>
select f_id, f_name, f_preId, f_type, createtime, updatedtime
 FROM cms.t_product_type_config_title
 WHERE f_type = 2;
------------------------------------------------------------------------------------------------------------------------
--  2  2020.04.10 23:30:20 CST DEBUG com.cms.dao.ProductTypeConfigGroupDao.queryAll - ==>
select f_id, f_titleId, f_name, f_preId, f_type, createtime, updatedtime
 FROM cms.t_product_type_config_group
 WHERE f_type = 2;
------------------------------------------------------------------------------------------------------------------------
--  3  2020.04.10 23:30:20 CST DEBUG com.cms.dao.ProductTypeConfigItemDao.queryAll - ==>
select f_id, f_groupId, f_preId, f_name, f_type, createtime, updatedtime
 FROM cms.t_product_type_config_item
 WHERE f_type = 2;
------------------------------------------------------------------------------------------------------------------------


使用环境

IntelliJ IDEA Ultimate版(172+)

源代码构建

项目管理:Gradle

在线安装(搜索)

不提供在线插件库安装

手动安装

2020.2 以上版本都支持

plugin.intellij.assistant.mybaitslog-2020.X-2.0.2.jar

说明文档:
1、插件基于日志来进行打印,如果无法打印SQL语句。排查一下日志
2、插件默认随项目启动而启动
3、如果不行!试试看!无敌大法,卸载插件,然后在重新安装
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].