插件应用市场

log2sql
用于自动进行Spring Boot 应用的日志sql的拼接。
用于mybatis日志转sql
例如:
日志:
2025-03-11 09:02:35,946 [DEBUG] [Thread-4259] [spring.profiles.active_IS_UNDEFINED-] [c.s.f.m.e.F.getErrorEndDateReceipt:143] ==> Preparing: select xxx from xxx where batch_no = ?
2025-03-11 09:02:35,946 [DEBUG] [Thread-4259] [spring.profiles.active_IS_UNDEFINED-] [c.s.f.m.e.F.getErrorEndDateReceipt:143] ==> Parameters: 2025040301(String)
把上面的东西复制到html里面
解析结果:
select xxx from xxx where batch_no = '2025040301'
例如:
日志:
2025-03-11 09:02:35,946 [DEBUG] [Thread-4259] [spring.profiles.active_IS_UNDEFINED-] [c.s.f.m.e.F.getErrorEndDateReceipt:143] ==> Preparing: select xxx from xxx where batch_no = ?
2025-03-11 09:02:35,946 [DEBUG] [Thread-4259] [spring.profiles.active_IS_UNDEFINED-] [c.s.f.m.e.F.getErrorEndDateReceipt:143] ==> Parameters: 2025040301(String)
把上面的东西复制到html里面
解析结果:
select xxx from xxx where batch_no = '2025040301'