随笔分类 -  开发工具

摘要:wsl --import --vhd Debian d:\\wsl f:\\mylinux\\debian\\ext4.vhdx --version 2 导入的耗时由vhdx镜像文件的大小而定,我导入的镜像有100多G,用了将近2天的时间 TRANSLATE with x English Arabi 阅读全文
posted @ 2022-12-09 08:33 jamstack 阅读(682) 评论(0) 推荐(0)
摘要:背景: 使用jwt.io验证自定义token出现Invalid Signature 解决: 使用jwt.io验证token,要输入secret 参考资料: https://learnku.com/laravel/t/27013 https://www.e-learn.cn/topic/484582 阅读全文
posted @ 2022-06-28 09:51 jamstack 阅读(294) 评论(0) 推荐(0)
摘要:参考资料: https://www.cnblogs.com/wwyz/p/6809869.html 阅读全文
posted @ 2022-06-20 14:29 jamstack 阅读(230) 评论(0) 推荐(0)
摘要:背景: spring boot开发的项目,需要对jar包进行一些处理,使用了xjar。 一、在启动类的pom.xml添加如下配置 <!-- 添加 XJar 依赖 --> <dependency> <groupId>com.github.core-lib</groupId> <artifactId>x 阅读全文
posted @ 2022-06-20 10:52 jamstack 阅读(725) 评论(0) 推荐(0)
摘要:错误信息: parent.relativePath' of POM com.fast:fast-workflow-spring-boot-starter:1.0-SNAPSHOT (D:\project\spring-auto-parent\fast-workflow-spring-boot-sta 阅读全文
posted @ 2022-06-13 16:16 jamstack 阅读(79) 评论(0) 推荐(0)
摘要:背景: 如果你的项目开发使用的是若依,前端需要安装依赖,这个时候选择合适的版本,可以避免安装依赖时报错,经过实践,截至目前,比较合适的版本如下: node 14.19.3 使用nvm进行安装,命令如下: nvm install 14.19.3 nvm use 14.19.3 阅读全文
posted @ 2022-06-13 10:13 jamstack 阅读(3205) 评论(1) 推荐(0)
摘要:console.log("%c%s", "color: red; background: yellow; font-size: 24px;", "警告!"); 参考资料: https://www.webhek.com/post/add-styles-console.html 阅读全文
posted @ 2022-06-08 20:41 jamstack 阅读(181) 评论(0) 推荐(0)
摘要:参考资料: https://cloud.tencent.com/developer/article/1506869 阅读全文
posted @ 2022-06-07 20:14 jamstack 阅读(120) 评论(0) 推荐(0)
摘要:背景: idea 2021.1 + maven 3.8.5 安装项目依赖,出现报错:NoSuchMethodError: org.apache.maven.model.validation.DefaultModelValidator: method 'void <init>()' not found 阅读全文
posted @ 2022-05-27 19:25 jamstack 阅读(1817) 评论(0) 推荐(0)
摘要:背景: 想用postman模拟表单的提交,但是提交的参数太多了,在postman里手动模拟很容易出错,如果可以把chrome浏览器里的请求直接导入到postman,就方便了多了 实现方法: 1.chrome => network => copy as cURL(bash) 2.postman => 阅读全文
posted @ 2022-05-25 19:16 jamstack 阅读(800) 评论(0) 推荐(0)
摘要:参考资料: https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/108069279 https://juejin.cn/post/6997587227807072264 https://heptaluan.github.io/2019/ 阅读全文
posted @ 2022-05-25 15:45 jamstack 阅读(214) 评论(0) 推荐(0)
摘要:config.module.rule('images').use('url-loader') .loader('file-loader') // replaces the url-loader .tap(options => Object.assign(options, { name: 'img/a 阅读全文
posted @ 2022-05-21 18:15 jamstack 阅读(345) 评论(0) 推荐(0)
摘要:docker pull nacos/nacos-server docker run --env MODE=standalone --name nacos -d -p 8848:8848 nacos/nacos-server 参考资料: https://www.csdn.net/tags/MtTaMg 阅读全文
posted @ 2022-05-19 17:53 jamstack 阅读(241) 评论(0) 推荐(0)
摘要:下载: https://repo.spring.io/ui/native/release/org/springframework/boot/spring-boot-cli/2.4.5/ 把下载的压缩包解压到D:\soft\spring-boot-cli-2.4.5-bin\spring-2.4.5, 阅读全文
posted @ 2022-05-19 14:40 jamstack 阅读(249) 评论(0) 推荐(0)
摘要:npm install -g @vue/cli 参考资料: https://blog.51cto.com/u_15242378/5142524 阅读全文
posted @ 2022-05-18 20:56 jamstack 阅读(44) 评论(0) 推荐(0)
摘要:参考资料: https://www.jianshu.com/p/610ee519ea78 阅读全文
posted @ 2022-05-18 18:27 jamstack 阅读(137) 评论(0) 推荐(0)
摘要:背景: 同样的项目,在办公电脑上一切正常,换一个开发环境就报错了,开始以为是jdk版本版本不一致导致的,把jdk版本调整一致,问题还算没有解决,查了一些资料,有说是yml配置文件编码不是utf-8,改成utf-8问题仍然存在,还有说是maven默认编码是gbk,是maven导致的,实际测试,这个错误 阅读全文
posted @ 2022-05-16 23:18 jamstack 阅读(666) 评论(0) 推荐(0)
摘要:参考资料: https://blog.csdn.net/weixin_42771651/article/details/121563281 阅读全文
posted @ 2022-05-16 18:16 jamstack 阅读(79) 评论(0) 推荐(0)