上一页 1 2 3 4 5 6 7 8 ··· 10 下一页
摘要: 提示: git log 中发现提交 49e6265938d6adc13343e7b6bc8a3c130cb08833 的邮箱 *** 不符合要求 解决方式: git log 查看上次commit前一次版本号 git reset 版本号 (回退本地的上次commit) git config user. 阅读全文
posted @ 2021-10-15 17:37 苏黎世湖畔 阅读(42) 评论(0) 推荐(0)
摘要: 查看镜像列表 Docker images 启动容器 docker run -e TZ="Asia/Shanghai" -d -p 8084:8081 --name 镜像名 -v /home/test/:/root/test 镜像名:镜像版本 查看运行进程 Docker ps -a 查看容器日志 do 阅读全文
posted @ 2021-10-12 15:49 苏黎世湖畔 阅读(13) 评论(0) 推荐(0)
摘要: 2.1 Java 1、查找java相关的列表 yum -y list java* 2、安装jdk yum install java-1.8.0-openjdk.x86_64 -y 3、完成安装后验证 java -version 或者手动安装 2.2 Nginx Nginx版本:1.18.0 安装 下 阅读全文
posted @ 2021-10-12 10:52 苏黎世湖畔 阅读(84) 评论(0) 推荐(0)
摘要: 查看是否已安装docker列表 yum list installed | grep docker 安装docker yum -y install docker启动docker systemctl start docker 查看docker服务状态 systemctl status docker 容器 阅读全文
posted @ 2021-10-12 10:43 苏黎世湖畔 阅读(56) 评论(0) 推荐(0)
摘要: 定义注解 @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface ApiAccessLimit { int seconds() default 5; int maxCo 阅读全文
posted @ 2021-10-09 11:21 苏黎世湖畔 阅读(297) 评论(0) 推荐(0)
摘要: 定义注解 @Target(ElementType.METHOD)@Retention(RetentionPolicy.RUNTIME)@Documentedpublic @interface ApiHeaderCheck {} 定义切面 @Aspect@Component@Slf4jpublic c 阅读全文
posted @ 2021-10-08 15:43 苏黎世湖畔 阅读(435) 评论(0) 推荐(0)
摘要: import cn.hutool.crypto.asymmetric.KeyType; import cn.hutool.crypto.asymmetric.RSA; /** * RAS非对称加密 */ public class RsaUtil { private static final Stri 阅读全文
posted @ 2021-09-30 14:37 苏黎世湖畔 阅读(292) 评论(0) 推荐(0)
摘要: 1.在解压后的同级目录下,新增my.ini文件,配置如下 [mysql]# 设置mysql客户端默认字符集default-character-set=utf8mb4[mysqld]#设置3306端口port = 3306# 设置mysql的安装目录basedir=D:\mysql-5.7.35-wi 阅读全文
posted @ 2021-09-14 19:06 苏黎世湖畔 阅读(58) 评论(0) 推荐(0)
摘要: 创建表drop table if exists sequences;create table sequences( SEQUENCE_NAME varchar(80) not null comment '自增序列名称' primary key, INCREMENT_BY int not null c 阅读全文
posted @ 2021-09-06 14:16 苏黎世湖畔 阅读(1013) 评论(0) 推荐(0)
摘要: using index :使用覆盖索引的时候就会出现 using where:在查找使用索引的情况下,需要回表去查询所需的数据 using index condition:查找使用了索引,但是需要回表查询数据 using index & using where:查找使用了索引,但是需要的数据都在索引 阅读全文
posted @ 2021-09-04 11:21 苏黎世湖畔 阅读(24) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 10 下一页