摘要: 拉取代码,git clone https://github.com/jcefmaven/jcefmaven.git 导入IDE,我用的是IntelliJ IDEA 2023.3,如果用其他的就正常导入Maven项目就行了。 Maven构建一下 运行Main方法,运行me.friwi.jcefsamp 阅读全文
posted @ 2024-01-23 10:10 InkYi 阅读(106) 评论(0) 推荐(0) 编辑
摘要: curl cip.cc 阅读全文
posted @ 2023-12-29 11:23 InkYi 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 全局设置 git config --global user.name "名字" git config --global user.email "邮件" 创建 git 仓库: mkdir workbench cd workbench git init touch README.md git add R 阅读全文
posted @ 2022-12-05 14:20 InkYi 阅读(34) 评论(0) 推荐(0) 编辑
摘要: excel替换功能,查找文本有= ~ 可能查找不到,可以用?号代替字符, 比如 var abcd =~ dddd && 可以替换成 var abcd ?? dddd && 就能找到了 阅读全文
posted @ 2022-11-30 11:15 InkYi 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 1.如何找到excel单元格中的公式 2.将公式转换成文本 选中要转换的列, 1.左键-复制 2.左键 - 选择性粘贴 - 粘贴为数值 阅读全文
posted @ 2022-08-19 10:59 InkYi 阅读(3895) 评论(0) 推荐(0) 编辑
摘要: <if test="likeSearchMap != null"> <foreach collection="likeSearchMap.entrySet()" index="key" item="val"> and ${key} like concat('%', #{val},'%') </for 阅读全文
posted @ 2022-04-27 11:11 InkYi 阅读(1412) 评论(0) 推荐(0) 编辑
摘要: TransactionAspectSupport.currentTransactionStatus().setRollbackOnly(); 阅读全文
posted @ 2022-04-13 16:41 InkYi 阅读(8) 评论(0) 推荐(0) 编辑
摘要: <choose> <when test="cleanStatus != null and cleanStatus.size() == 1 and cleanStatus.contains('2'.toString())"> order by update_time asc </when> <othe 阅读全文
posted @ 2022-03-29 11:51 InkYi 阅读(1961) 评论(0) 推荐(0) 编辑
摘要: 分类:应该是一个大类,比如Java,JS,算法,数据结构,中间件等 标签应该是大类下的子类,比如 Java下面: Spring HashMap LocalDate ArrayList等 算法下面: 两数之和 递归排序 冒泡排序等 之后按照这个整理一下 阅读全文
posted @ 2022-02-16 10:26 InkYi 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 查找nginx路径 ps -ef | grep nginx root 94365 1 0 22:07 ? 00:00:00 nginx: master process /usr/sbin/nginx -g daemon on; master_process on; nobody 94366 9436 阅读全文
posted @ 2022-02-01 22:16 InkYi 阅读(30) 评论(0) 推荐(0) 编辑