摘要: VS打包项目成.exe&.msi ref: https://blog.csdn.net/weixin_44790046/article/details/103016154 准备工作 VS 2022(VS2017无法安装Installer Projects扩展,未知原因) Installer Proj 阅读全文
posted @ 2024-05-06 10:00 夏末秋初~ 阅读(136) 评论(0) 推荐(0) 编辑
摘要: ref: https://learnku.com/articles/68553 VirtualBox虚拟机与主机之间双向复制粘贴 VM: VirtualBox v7 主机:Win10 VM OS: Ubuntu 22 确保虚拟机系统没有运行,然后在虚拟机软件 VirtualBox 选择对应设置的虚拟 阅读全文
posted @ 2024-04-30 14:50 夏末秋初~ 阅读(551) 评论(0) 推荐(0) 编辑
摘要: ref: https://www.jianshu.com/p/ddf1195e6d9f 安装jdk17 要安装此版本,请先更新软件包索引: $ sudo apt update 接下来,检查Java是否安装: $ java -version 如果Java当前未安装,您将看到以下输出: 找不到命令 “j 阅读全文
posted @ 2024-04-30 14:41 夏末秋初~ 阅读(74) 评论(0) 推荐(0) 编辑
摘要: typescript ref: https://www.runoob.com/typescript/ts-tutorial.html 安装 npm install -g typescript tsc -v app.ts const hello : string = "Hello World!" co 阅读全文
posted @ 2024-04-30 11:10 夏末秋初~ 阅读(12) 评论(0) 推荐(0) 编辑
摘要: JDK各版本特性概览(5-21) Refs: https://zhuanlan.zhihu.com/p/254966376 https://blog.csdn.net/xxj_jing/article/details/134791422 Java 5 泛型 Generics 泛型本质是参数化类型,解 阅读全文
posted @ 2024-04-30 10:28 夏末秋初~ 阅读(11) 评论(0) 推荐(0) 编辑
摘要: ❗ Problematic frame:有问题的框架 ✔ fastjson空指针不能正确抛空指针异常,换成fastjson2即可。 A fatal error has been detected by the Java Runtime Environment: EXCEPTION_ACCESS_VI 阅读全文
posted @ 2022-12-30 09:13 夏末秋初~ 阅读(1271) 评论(0) 推荐(0) 编辑
摘要: 下载与安装Redis ref: https://www.bilibili.com/video/BV1Rv41177Af redis 👉 Download | Redis xftp/xshell 👉 NetSarang Homepage CN - NetSarang Website (xshell 阅读全文
posted @ 2022-12-30 08:56 夏末秋初~ 阅读(55) 评论(0) 推荐(0) 编辑
摘要: locale -a | grep "zh_CN" # 如果没有任何提示需要下载语言包 vim /etc/locale.conf 添加LANG=zh_CN.gbk在最前面 reroot # 重启服务器生效 阅读全文
posted @ 2022-12-29 08:46 夏末秋初~ 阅读(28) 评论(0) 推荐(0) 编辑
摘要: yum yum install httpd # 中间y就可以了 # 如果执行上面提示No package httpd available.那就试试下面的 yum --disableexcludes=all install httpd # 会告诉你Install 1 Package (+4 Depen 阅读全文
posted @ 2022-12-29 05:22 夏末秋初~ 阅读(190) 评论(0) 推荐(0) 编辑
摘要: yum yum -y list java* # 查询jdk版本 ... java-1.7.0-openjdk-headless.x86_64 1:1.7.0.261-2.6.22.2.el7_8 os java-1.7.0-openjdk-javadoc.noarch 1:1.7.0.261-2.6 阅读全文
posted @ 2022-12-29 04:39 夏末秋初~ 阅读(106) 评论(0) 推荐(0) 编辑