10 2021 档案
摘要:拉取了该网页的部分内容:https://github.com/varHarrie/varharrie.github.io/issues/10 | 名称 | 简述 | | | | | Auto Close Tag | 自动闭合HTML标签 | | Auto Import | import提示 | |
阅读全文
摘要:集成SpringBoot-JPA 导入依赖: spring-boot-starter-data-jpa mysql-connector-java 配置数据库连接,jpa的表映射关系等 spring: datasource: username: root password: 123456 url: j
阅读全文
摘要:nginx的反向代理的使用方法 server { listen 54545; server_name localhost; location ~/user { proxy_pass http://192.168.239.1:1998; } } 将所有访问 54545 端口的请求都会被nginx代理,
阅读全文
摘要:Redis 概念 Redis:非关系型数据库(non-relational),Mysql是关系型数据库(RDBMS) Redis是当今非常流行的基于KV结构的作为Cache使用的NoSQL数据库 为什么使用NoSQL 关系型 数据库无法应对每秒上万次 的读写请求 表中的存储记录 数量有限 无法简单的
阅读全文
摘要:使用electron-forge/cli 打包electron程序, ```bash #安装 electron-forge/cli 脚手架 npm install --save-dev @electron-forge/cli #执行命令 npx electron-forge import ✔ Che
阅读全文
摘要:Linux系统 Linux系统安装 学习网址:linux学习网址 安装VMware虚拟机 虚拟机序列号:5A02H-AU243-TZJ49-GTC7K-3C61N 创建虚拟机——>典型——>安装程序镜像文件(选择下载的CentOS压缩包) ——>选择安装路径(系统盘中)——>选择一个预留空间20G空
阅读全文
摘要:scroll-view ::-webkit-scrollbar { display: none !important; width: 0 !important; height: 0 !important; -webkit-appearance: none; background: transpare
阅读全文
摘要:正向代理配置 环境配置文件 .env.development ENV = 'development' VUE_APP_BASE_API="/dev-api" vue配置文件 vue.config.js devServer: { proxy:'http://localhost:8080'//所有的接口
阅读全文
摘要:#查看端口 netstat -ano|findstr "8080" #查看结果如下 #TCP 192.168.43.196:8080 192.168.43.196:59178 ESTABLISHED 4704 #杀死端口 taskkill -pid 4704 -f #结果如下 #成功: 已终止 PI
阅读全文
摘要:jdbc:mysql://localhost:3306/local?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC
阅读全文
摘要:```js webPreferences:{ contextIsolation:false, nodeIntegration:true } ```
阅读全文
摘要:引用掘金文章:https://juejin.cn/post/6844903561017425927#heading-2
阅读全文
摘要:报错: ### The error may exist in com/cth/dao/UserImpl.xml ### Cause: org.apache.ibatis.builder.BuilderException: Error parsing SQL Mapper Configuration.
阅读全文
摘要:Tomcat 下载解压即可 配置环境变量 CATALINA_HOME tomcat解压包位置 启动 进入解压包中的bin目录 #启动tomcat startup #关闭tomcat shutdown IDEA 中配置 Tomcat settings——》Build,execution,deploym
阅读全文