上一页 1 2 3 4 5 6 7 8 9 ··· 110 下一页
摘要: 表备注 -- 获取用于添加表备注的 SQL 语句 SELECT CONCAT('ALTER TABLE 目标数据库名.', TABLE_NAME, ' COMMENT = \'', TABLE_COMMENT, '\';') AS alter_table_comment_sql FROM INFOR 阅读全文
posted @ 2024-09-19 17:26 陈彦斌 阅读(89) 评论(0) 推荐(0)
摘要: IDEA代码撤回办法如下 例如test123是错误代码,我们需要回撤到test12 右键点击test12(选择要回退的版本),选择Reset Current Branch to Here... 有以下四种方式回撤代码,这里我们选择Hard (1)soft 文件不会更改,差异将暂存提交 (2)Mixe 阅读全文
posted @ 2024-09-11 18:22 陈彦斌 阅读(232) 评论(0) 推荐(0)
摘要: 基础命令 查看索引列表 GET /_cat/indices?v=true&pretty 查看分片情况 GET /_cat/shards?v=true&pretty 创建索引(Create Index) PUT /<index_name> { "settings": { "number_of_shar 阅读全文
posted @ 2024-09-08 23:59 陈彦斌 阅读(2342) 评论(0) 推荐(0)
摘要: 创建2个项目 springboot-cloud-config(作配置中心) springboot-cloud-client(客户端) springboot-cloud-config(工程) 注意:2个项目springboot版本:2.4.0 添加依赖 <dependency> <groupId>or 阅读全文
posted @ 2024-08-26 09:42 陈彦斌 阅读(99) 评论(0) 推荐(0)
摘要: 本地生成ssh公私秘钥 ssh-keygen 将本地公钥上传至服务器、 本地公钥地址:C:\Users\xxxxx\.ssh\id_rsa.pub 先上传至服务器根目录:/home 创建文件夹:cd /home && mkdir .ssh 拷贝文件到.ssh:cp /home/id_rsa.pub 阅读全文
posted @ 2024-08-21 11:52 陈彦斌 阅读(75) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 110 下一页