摘要:
1 卸载本地 node.js 2 安装NVM 2.1 下载 GitHub:https://github.com/coreybutler/nvm-windows 版本列表:https://github.com/coreybutler/nvm-windows/tags 2.2 安装 1、选择安装目录 2 阅读全文
摘要:
1、引入相关依赖 <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>4.1.1</version> </dependency> <dependency> <groupId>org. 阅读全文
摘要:
1、win+R 输入 `regedit` 打开注册表编辑器 2、依次打开路径:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings 3、点击鼠标右键,新建DWORD(32位)文件:FlightSettingsMaxPauseD 阅读全文
摘要:
一、下载安装包 地址:https://dev.mysql.com/downloads/mysql/ 二、删除以前的MySql服务 #查找以前是否装有mysql sc query mysql #删除mysql,以管理员身份运行 #停止mysql net stop mysql #删除mysql服务 sc 阅读全文
摘要:
一、资源包下载 1.1、官网下载地址 https://www.postgresql.org/ftp/source/ 1.2 上传安装包,并解压 # .tar.gz后缀:tar -zxvf 文件名 # .tar.xz后缀:tar -Jxvf 文件名 # -C 后面是解压后存放的目录 tar -xv 阅读全文
摘要:
一、卸载MariaDB ## 查看是否安装 rpm -qa|grep mariadb ## 卸载 rpm -e --nodeps mariadb-libs 二、资源包准备 2.1 官网下载 https://dev.mysql.com/downloads/mysql/ 2.2 上传安装包,并解压 # 阅读全文
摘要:
一、安装node.js 官网:下载地址 历史版本:历史版本下载地址 下载完毕后,可以安装node,一路默认选项即可。这里我的安装路径是:D:\environment\nodejs。 建议不要安装在系统盘(如C:),建议安装的路径不要有中文。 二、设置nodejs prefix(全局)和cache(缓 阅读全文
摘要:
实现方式:通过 自定义验证方法监控 input 内容输入,当出现滚动条时修改输入框高度。 //高度自适应 //params[0] input标签下textarea的初始height $.extend($.fn.validatebox.defaults.rules, { textAutoHeight: 阅读全文
摘要:
public class SslUtils { private static void trustAllHttpsCertificates() throws Exception { TrustManager[] trustAllCerts = new TrustManager[1]; TrustMa 阅读全文
摘要:
一、客户端方式: 1、导入相关依赖 <!--pom 导入依赖,根据实际情况选择版本 --> <dependency> <groupId>org.apache.kafka</groupId> <artifactId>kafka-clients</artifactId> <version>2.3.0</ 阅读全文