摘要: Git Init 名称 git-init- 语法(概要) git init [-q | --quiet] [--bare] [--template=<template-directory>] [--separate-git-dir <git-dir>] [--object-format=<forma 阅读全文
posted @ 2023-02-12 20:26 菜阿 阅读(177) 评论(0) 推荐(0) 编辑
摘要: Wsl2安装CentOS7 (或任何你想安装的Linux发行版) 前提条件:安装了虚拟机,且安装好了Docker 找到你想要的CentOS版本 CentOS的DockerHub地址 下载docker镜像(我这里是因为已经下载好了,所以显示的结果是这样) [root@localhost128 ~]# 阅读全文
posted @ 2023-02-12 20:26 菜阿 阅读(276) 评论(0) 推荐(0) 编辑
摘要: 软件安装: | 目录 | 作用 | | | | | /usr | 系统级目录。可理解为C:/Windows/,/usr/lib: 可理解为 C:/Windows/System32。 | | /usr/local | 用户级的程序目录。可理解为 C:/Progrem Files/。用户自己编译的软件默 阅读全文
posted @ 2023-02-12 20:26 菜阿 阅读(18) 评论(0) 推荐(0) 编辑
摘要: Git Rebase 名称 git-rebase - 在另一个基本提示之上重新应用提交(Reapply commits on top of another base tip) 语法(概要) git rebase [-i | --interactive] [<options>] [--exec <cm 阅读全文
posted @ 2023-02-12 20:26 菜阿 阅读(276) 评论(0) 推荐(0) 编辑
摘要: Git Merge 名称 git-merge - 将两个或多个开发历史合并到一起 语法 git merge [-n] [--stat] [--no-commit] [--squash] [--[no-]edit] [--no-verify] [-s <strategy>] [-X <strategy 阅读全文
posted @ 2023-02-12 20:26 菜阿 阅读(1585) 评论(0) 推荐(0) 编辑
摘要: Jdk实现本地文件监听 监听实现: ConfigDirWatchContext package com.jinko.apollo; import com.google.common.util.concurrent.ThreadFactoryBuilder; import de.schlichther 阅读全文
posted @ 2023-02-12 20:26 菜阿 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 泛化(generalization):表示is-a的关系,是对象之间耦合度最大的一种关系,子类继承父类的所有细节。直接使用语言中的继承表达。在类图中使用带三角箭头的实线表示,箭头从子类指向父类。注意:里氏代换原则可以更深入理解泛化 依赖(Dependency):对象之间最弱的一种关联方式,是临时性的 阅读全文
posted @ 2023-02-12 20:26 菜阿 阅读(6) 评论(0) 推荐(0) 编辑
摘要: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/P 阅读全文
posted @ 2023-02-12 20:26 菜阿 阅读(13) 评论(0) 推荐(0) 编辑
摘要: Windows上Docker-Desktop更换发行版位置 原理:wsl可以通过命令手动安装、删除Linux子系统 wsl --help 查看命令帮助 wsl完整命令参考文档 --list, -l [选项] 列出分发。 --export <分发> <文件> 将分发版导出到 tar 文件。 在标准输出 阅读全文
posted @ 2023-02-12 20:26 菜阿 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 修改配置: docker exec mysql bash -c 'echo "lower_case_table_names=1" >> etc/mysql/mysql.conf.d/mysqld.cnf' 重启: docker restart mysql 阅读全文
posted @ 2023-02-12 20:26 菜阿 阅读(123) 评论(0) 推荐(0) 编辑