摘要:
在esix安装win10安装过程遇到了坑,发现必须对具体选项进行设置后才可,做下记录: 1、CPU设置 2、硬盘 3、网络适配器 4、驱动器 5、虚拟机选项 阅读全文
摘要:
cd /etc/netplan 直接编辑 sudo vi /etc/netplan/00-installer-config.yaml #network: # ethernets: # ens160: # dhcp4: true # version: 2 network: version: 2 eth 阅读全文
摘要:
1,目录初始化 git init 2,设置远程仓库地址 git remote add -f origin https://github.com/xxxxx 3,设置sparse checkout模式,允许克隆子目录 git config core.sparsecheckout true 4,设置指定 阅读全文
摘要:
apt-get update很慢问题 1.打开终端,进入目录: cd /etc/apt 2.备份一下原来的source文件: mv sources.list sources.list.bak 3.修改source.list文件,清空里面的内容,并复制以下内容进去:因为没有vi命令 echo "deb 阅读全文
摘要:
临时解决 SET @@global.sql_mode ='STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION'; 阅读全文
摘要:
1、注意gradle版本 build.gradle -》gradleVersion 2、阿里仓库 maven { url "https://maven.aliyun.com/nexus/content/repositories/spring-plugin" } maven { url "https: 阅读全文
摘要:
cmd执行 Win11切换经典右键菜单: reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve taskkill /f /im explorer.exe & 阅读全文
摘要:
spring.jackson.date-format=yyyy-MM-dd HH:mm:ss spring.jackson.time-zone=GMT+8 不起作用???不生效???why??? 需要实现 WebMvcConfigurer 或 继承WebMvcConfigurerAdapter @C 阅读全文
摘要:
1 Frp介绍 frp 是一个开源、简洁易用、高性能的内网穿透和反向代理软件,支持 tcp, udp, http, https等协议。frp 项目官网是 https://github.com/fatedier/frp/releases 一个是linux一个是win 下载完成后上传服务器解压如下: 两 阅读全文
摘要:
有三张表需要关联查询,关联关系如下 A表 B表 关联 A.col = B.id C表 关联 B.col = C.id 问题出在 B表 关联 A.col = B.id,为啥?执行计划就是不走id主键,C表 关联 B.col = C.id都可以正常走 【解决思路】 1、尝试单表查询,验证索引是否正常 试 阅读全文