background picture of the home page

Hello World

深入剖析MyBatis缓存机制

参考: https://zhuanlan.zhihu.com/p/678917327 为什么?Mybatis的一级和二级缓存都不建议使用? https://www.jianshu.com/p/2e439cba07fa https://www.bilibili.com/video/BV1Px4y1n7

thumbnail of the cover of the post

Logback中如何自定义灵活的日志过滤规则

参考: https://blog.csdn.net/u010979642/article/details/107867942 Logback 提供两种类型的过滤器,常规过滤器和turbo过滤器。本例讲述基于常规过滤器的自定义实现。 常规过滤器 常规的logback-classic过滤器扩展了 Fil

thumbnail of the cover of the post

mybatis批量更新

参考: https://blog.csdn.net/qq_16992475/article/details/139633631 https://blog.csdn.net/zk673820543/article/details/106579809/ 记得修改配置,增加rewriteBat

thumbnail of the cover of the post

win10休眠后自动开机

参考: https://zhidao.baidu.com/question/722650993234459365.html https://zhidao.baidu.com/question/1702490670338040588.html 配置不自动更新: https://blog.51cto.c

thumbnail of the cover of the post

mybatis批量插入

参考: https://blog.csdn.net/qq_45525848/article/details/137725872 前提:使用for循环+insert单条插入1W条用时26348ms 四、MyBatis以集合方式批量新增 1、编写UserService服务类 @Service publi

thumbnail of the cover of the post

java 包装类型的值传参

在Java中,包装类型如Integer、Double、Boolean等都是不可变的,即一旦创建,它们的值就不能改变。当你将包装类型作为方法参数并且使用引用传递时,实际上传递的是对象引用的值。如果方法内部修改了这个引用,外部的变量也会被影响,因为它们指向同一个对象。 以下是一个示例代码,演示了如何通过

thumbnail of the cover of the post