07 2021 档案
摘要:第一次接触redis,自己碰了好多回壁。下面是乱码图 下面是配置成功了的redis缓存图 一、重要的redis配置类 package com.tt.springboot.config; import org.springframework.beans.factory.annotation.Value
阅读全文
摘要:<dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> </dependency>
阅读全文
摘要:有时候,.gitignore 会对部分文件 / 文件夹失效,大概原因是由于新创建的文件已经出现在 git 本地仓库的缓存,所以.gitignore 就失效了 解决办法就是清空一下 git 仓库的缓存,重新提交一次就好了 命令 git -rm -r --cached . git add . git c
阅读全文
摘要:目录 基本命令 镜像管理 容器管理 一、基本命令 Docker版本信息:docker version Docker系统信息:docker info 二、镜像管理 查看所有镜像:docker images 搜索镜像:docker search busybox 拉取下载:docker pull busy
阅读全文
摘要:在页面FormMain_Load里面添加如下注册事件: for (int i = 0; i < this.toolStrip1.Items.Count; i++) { this.toolStrip1.Items[i].MouseHover += new EventHandler(toolStrip1
阅读全文