标签: 技术

12 篇文章

idea设置快捷键(代码模板)
转载:https://blog.csdn.net/weixin_41979605/article/details/109559736 idea设置快捷键(代码模板) idea里面非常好用的是大量的代码模板 main 在类里面使用main就可以直接打出main方法的模板,而不需要像eclipse需要在建立工程的时候选择 sout 使用sout就可以输…
两个实体类集合转换成一对多的结构
其中一个实体参数组装成key, 可能还需要比较该集合中实体某个参数是否一致 并使caseid一致 String key = Id +"-"+ Name+"-"+testTime; if(detailMap.containsKey(key)){ UatBugCaseHouseDetail detail_onty…
debian开关机
1、重启:reboot 2、关机:halt 或者 shutdown immediate
枚举的用法
参考:https://blog.csdn.net/qq_27093465/article/details/52180865 public enum Color { RED("红色", 1), GREEN("绿色", 2), BLANK("白色", 3), YELLO("黄色&qu…
Mysql生僻字无法输入’\xF0\xAA\x85\x99\xE9\xB8…’ for column ‘content’ at row 1
如生僻字:𪅙 修改表字段编码为utf8mb4 由官方文档我们可以知道,mysql 支持的 utf8 编码最大字符长度为 3 字节,如果遇到 4 字节的宽字符就会有插入异常的问题。三个字节的 UTF-8 最大能编码的 Unicode 字符是 0xffff,也就是说 Unicode 中的基本多文种平面(BMP)。也就是说,任何不在基本多文本平面的 Un…
Mybatis-Plus的逻辑删除
参考: https://baomidou.com/pages/6b03c5/ 方法一:全局配置 mybatis-plus: global-config: db-config: logic-delete-field: flag # 全局逻辑删除的实体字段名(since 3.3.0,配置后可以忽略不配置步骤2) logic-delete-value: …
金字塔
// for (int i = 1; i < 10; i++) { // for (int j = 0; j < i; j++) { // System.out.print("*"); // } // System.out.println(""); // } for (int i = 1; i &…
九九乘法表
for (int i = 1; i < 10; i++) { for (int j = 1; j <= i; j ++ ) { System.out.print( " " + j +" * " + i + " = " + i * j + " "); } Sy…