会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
InkYi
一只野生的程序猿
博客园
首页
新随笔
联系
订阅
管理
2024年1月23日
MacOSX系统jcefmaven用JDK17启动教程
摘要: 拉取代码,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
阅读(453)
评论(0)
推荐(0)
2023年12月29日
如何看到服务器IP
摘要: curl cip.cc
阅读全文
posted @ 2023-12-29 11:22 InkYi
阅读(17)
评论(0)
推荐(0)
2022年12月5日
Gitee创建仓库后关联本地仓库
摘要: 全局设置 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
阅读(46)
评论(0)
推荐(0)
2022年11月30日
excel替换功能,查找文本有= ~ 查找不到
摘要: excel替换功能,查找文本有= ~ 可能查找不到,可以用?号代替字符, 比如 var abcd =~ dddd && 可以替换成 var abcd ?? dddd && 就能找到了
阅读全文
posted @ 2022-11-30 11:15 InkYi
阅读(144)
评论(0)
推荐(0)
2022年8月19日
wps将公式结果转为文本
摘要: 1.如何找到excel单元格中的公式 2.将公式转换成文本 选中要转换的列, 1.左键-复制 2.左键 - 选择性粘贴 - 粘贴为数值
阅读全文
posted @ 2022-08-19 10:59 InkYi
阅读(4535)
评论(0)
推荐(0)
2022年4月27日
Mybatis遍历Map
摘要: <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
阅读(1443)
评论(0)
推荐(0)
2022年4月13日
Spring 手动回滚
摘要: TransactionAspectSupport.currentTransactionStatus().setRollbackOnly();
阅读全文
posted @ 2022-04-13 16:41 InkYi
阅读(24)
评论(0)
推荐(0)
2022年3月29日
MyBatis的xml判断List中是否包含某个字符串
摘要: <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
阅读(2620)
评论(0)
推荐(0)
2022年2月16日
分类和标签的概念
摘要: 分类:应该是一个大类,比如Java,JS,算法,数据结构,中间件等 标签应该是大类下的子类,比如 Java下面: Spring HashMap LocalDate ArrayList等 算法下面: 两数之和 递归排序 冒泡排序等 之后按照这个整理一下
阅读全文
posted @ 2022-02-16 10:26 InkYi
阅读(175)
评论(0)
推荐(0)
2022年2月1日
Nginx笔记
摘要: 查找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
阅读(41)
评论(0)
推荐(0)
下一页
公告