言寸

导航

2022年4月6日 #

Typora+PicGo+GitHub+GitHub Desktop

摘要: Typora 2022年的版本开始收费,可以下载以前的版本 Typora 是一款很好的markdown工具,缺点是图片只能本地查看,这里可以搭建图床 搭建图床 下载 PicGo 配置 安装插件,配置存储路径和文件名, 因为同名文件上传多次会报错,最好设置一下,保证文件名不重名 img/{y}-{m} 阅读全文

posted @ 2022-04-06 18:34 言寸 阅读(89) 评论(0) 推荐(0)

2021年12月13日 #

微信公众号开发-问题总结(坑)

摘要: 首先要吐槽的是,微信开发对开发者不太友好,各种限制; 限制一: 微信公众号测试号不能测客服功能,自己申请的个人公众号也没有权限,只能连公司的正式环境测,问题是正式环境不能随便瞎测啊 限制二: 微信公众号测试号获取素材列表接口,每天只有10次,这测个鬼 解决方案:自己开通一个公众号用来测试 限制三:从 阅读全文

posted @ 2021-12-13 18:36 言寸 阅读(437) 评论(0) 推荐(0)

2021年11月12日 #

map 取值报空指针,明明值存在

摘要: @Test public void testPesronMap() throws Exception { List<Long> ids = new ArrayList<>(); ids.add(1L); ids.add(2L); Map<Long, Person> map = personDao.s 阅读全文

posted @ 2021-11-12 10:14 言寸 阅读(879) 评论(0) 推荐(0)

2021年3月3日 #

Vue.js is detected on this page. Devtools inspection is not available because it's in production mode or explicitly disabled by the author

摘要: 在开发项目中文件 main.js 加入 Vue.config.devtools = true 再看,已经成功 阅读全文

posted @ 2021-03-03 16:02 言寸 阅读(4268) 评论(0) 推荐(0)

构建 thrift 简单项目, 使用 jmeter 去压测

摘要: 项目代码 https://github.com/xtj-yiluo/thriftJmeterTest 1、创建一个 thrift idl文件 namespace java com.syscom.thrift service lprocessData{ string processData(1:str 阅读全文

posted @ 2021-03-03 11:54 言寸 阅读(314) 评论(0) 推荐(0)

node 报错 npm ERR! cb() never called! npm ERR! This is an error with npm itself. Please report this error at: npm ERR! <https://npm.community> npm ERR! A complete log of this run can be found in:

摘要: npm ERR! cb() never called! npm ERR! This is an error with npm itself. Please report this error at: npm ERR! <https://npm.community> npm ERR! A comple 阅读全文

posted @ 2021-03-03 11:04 言寸 阅读(2469) 评论(0) 推荐(0)

2021年2月26日 #

thrift 异步方法调用报错 "TAsyncClientManager#SelectorThread 13" java.lang.NoSuchMethodError

摘要: 把同事的子项目,拿过来运行, 能调用同步方法, 但调用异步方法,编译能通过,但一直报错,最后对比发现,thrift依赖包版本不一致,选择降低版本,最后运行成功 "C:\Program Files\Java\jdk1.8.0_231\bin\java.exe" -ea -Didea.test.cycl 阅读全文

posted @ 2021-02-26 17:09 言寸 阅读(218) 评论(0) 推荐(0)

2021年1月27日 #

maven 查看依赖jar包,或获取版版本号 、license

摘要: 直接在命令行运行 mvn project-info-reports:dependencies 在生成的tar目录下 找到网址,直接打开 阅读全文

posted @ 2021-01-27 09:55 言寸 阅读(5230) 评论(0) 推荐(1)

2021年1月22日 #

windows 强制关掉端口

摘要: 在cmd下,输入 netstat -ano|findstr 8080 //说明:查看占用8080端口的进程 显示占用端口的进程 taskkill /pid 15132 /f 阅读全文

posted @ 2021-01-22 17:11 言寸 阅读(396) 评论(0) 推荐(0)

2020年4月24日 #

oracle 11g r2 添加oratop轻量级监控

摘要: oratop 支持的数据库版本: 11gR2 (11.2.0.3, 11.2.0.4) 12cR1 (12.1.0.1, 12.1.0.2, 12.2.0.1) 18c、19c oracle11g 没有包含这个组件,网上说在mos上可以免费下载,但我没有账户,就先放弃了, 最后选择从另外一台安好的o 阅读全文

posted @ 2020-04-24 14:38 言寸 阅读(813) 评论(0) 推荐(0)