摘要:
1、拉取镜像 docker pull rabbitmq:3-management 如果出现报错: Get https://registry-1.docker.io/v2/: net/http: request canceled while waiting for connection (Client 阅读全文
摘要:
当使用默认的npm install速度太慢时候,可以配置使用淘宝镜像 npm config set registry https://registry.npm.taobao.org 阅读全文
摘要:
MySQL出现 You do not have the SUPER privilege and binary logging is enabled报错 解决方案: 1、用root用户登录:mysql -u root -p 2、设置参数log_bin_trust_function_creators为1 阅读全文
摘要:
环境配置:(或以上版本,必须) 版本有对应关系 JDK 版本:1.8 Caffeine 版本:2.8.0SpringBoot 版本:2.2.2.RELEASE 也可以不与SpringBoot结合 1、添加maven依赖 <dependency> <groupId>com.github.ben-man 阅读全文
摘要:
1、先创建application.properties 文件,在resources文件夹,右键 new -> Resource Bundle 如下图所示,填写名称 2、生成如下图所示文件 3、将此文件后缀名改为yml.右键->Refactor->Rename 如下图所示,点击Refactor 4、重 阅读全文
摘要:
git rm -r --cached . #新增的忽略文件没有生效,是因为git是有缓存的,而之前的文件在缓存中,并不会清除掉,还会继续提交,所以更新.gitignore文件,要清除缓存文件 git add . git commit -m 'update .gitignore' git push o 阅读全文
摘要:
在开发过程中有时会用到maven仓库里没有的jar包或者本地的jar包 1、打开jar所在文件夹,假设我们要将 taobao-sdk-java-auto_1479188381469-20200121.jar 安装到本地Maven仓库 mvn install:install-file -Dfile=t 阅读全文
摘要:
1、项目右键后,点击“Git - Show History” 这里会显示有历史提交的版本记录(这里我们假设要回滚到 “提交” 版本中) 2、选中 “提交” ,右键Copy Revision Number 3、回到项目,右键-Git-Repository-Reset HEAD 4、Reset Type 阅读全文
摘要:
一、加入devtools依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> </depe 阅读全文
摘要:
官方SDK文档地址: https://help.aliyun.com/document_detail/57756.html?spm=a2c4g.11186623.6.904.4e0d3bd9VbkICO 1、引入maven依赖 <dependency> <groupId>com.aliyun</gr 阅读全文