docker

常用命令 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 docker images #显示本地镜像 docker search mysql #查询mysql镜像,或者访问网址 https://hub.docker.com/explore/ #常用镜像 openjdk8 python tomcat nginx mysql mongo redis rabbitmq docker pull mysql #下载mysql镜像 docker rmi image_id/image_name #删除镜像 docker image build -t my_image . # 编译Dockfile文件 docker ps #列出正在运行的容器 docker ps -a #列出所有容器 docker inspect -f='{{.Name}} {{.NetworkSettings.IPAddress}} {{.HostConfig.PortBindings}}'……

阅读全文

config

git 1 2 3 4 5 6 git config --global user.name "phoenixtree" #设置用户名 git config --global user.email "wu_ton-g@foxmail.com" #设置用户邮箱 #########第一次SSH认证时候用############## rm -fr ~/.ssh #删除本地密码对 ssh-keygen -t rsa -C "wu_ton-g@foxmail.com" #生成密码对 cp ~/.ssh/id_rsa.pub . #拷贝密码锁到 git目录 maven 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 <?xml version="1.0" encoding="UTF-8"?> <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <!-- localReposi……

阅读全文

win装机

Win装机 C盘100G Windows官网最新镜像制作–>安装 国内镜像 系统文件夹地址更改(重要) 安装完后更新一次 关闭Windows保护 –> 关闭Win更新 –> win10 Defender一键关闭 –> Windows激活–>重启 开启备份 software winrar 解压软件 + 迅雷 (修改下载位置……

阅读全文

mybatis-plus-generator

mybatis-plus-generator生成类代码,需要修改 pc.setParent(“com.poplar”) 项目路径 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 public class CodeGenerator { public static void main(String[] args) { // 代码生成器 AutoGenerator mpg = new AutoGenerator(); // 全局配置 GlobalConfig gc = new GlobalConfig(); String projectPath = System.getProperty("user.dir"); gc.setOutputDir(projectPath + "/src/main/java"); gc.setAuthor("phoenix"); gc.setOpen(false); gc.setIdType(IdType.AUTO); gc.setSwagger2(true); gc.setFileOverride(true); mpg.setGlobalConfig(gc); // 数据源配置 DataSourceConfig dsc = new DataSourceConfig(); dsc.setDbType(DbType.MYSQL); dsc.setUrl("jdbc:mysql://localhost:3306/poplar?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8"); // dsc.setSchemaName("public"); dsc.setDriverName("com.mysql.cj.jdbc.Driver"); dsc.setUsername("root");……

阅读全文

flyway

官网 【https://flywaydb.org/ Flyway是独立于数据库的应用、管理并跟踪数据库变更的数据库版本管理工具。用通俗的话讲,Flyway可以像Git管理不同人的代码那样,管理不同人的sql脚本,从而做到数据库同步。 流程 1、首先配置好flyway的基本信息后,运行项目……

阅读全文

mybatis-plus

mybatis 依赖添加并写配置 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 <plugins> <plugin> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-maven-plugin</artifactId> <version>1.3.7</version> <configuration> <verbose>true</verbose> <overwrite>true</overwrite> <configurationFile>src\main\resources\generationConfig.xml</configurationFile> </configuration> <dependencies> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.47</version> <!-- 版本过高无法生成 delete updata 方法 --> </dependency> </dependencies> </plugin> </plugins> generationConfig.xml 文件 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE generatorConfiguration PUBLIC……

阅读全文

redis

Redis windows下运行 下载Redis压缩包 https://github.com/MicrosoftArchive/redis/releases 解压并执行 redis-server.exe redis.windows.conf……

阅读全文

mysql

Mysql 命令 1 2 3 4 5 6 7 8 9 10 desc table; #显示表头 select Host,User,plugin from user; #用户名,登录方式,用户名,认证方式, ALTER USER root@localhost IDENTIFIED WITH mysql_native_password BY 'root'; #修改root认证方式mysql_native_password,密码为root FLUSH PRIVILEGES; #刷新认证表 UPDATE user SET Password=PASSWORD('newpassword') where USER='root'; #修改密码 ALTER USER root@localhost identified WITH mysql_native_password BY 'root'; #修改密码 set password for root@localhost = password('root'); #进入数据修……

阅读全文

idea

idea系统配置 在安装目录\binidea.exe.vmoptions idea64.exe.vmoptions 2个文件可修改运行内存,根据物理机性能而定 idea.properties 文件修改可更改默认配置目录,最上面添加如下 idea.config.path=F:/dev/ideaconfig/config idea.system.path=F:/dev/ideaconfig/system idea.plugins.path=F:/dev/ideaconfig/plugins idea.log.path=F:/dev/ideaconfig/log idea激活 1 2 # idea激活教程 https://blog.lupf.cn/articles/2021/12/30/1640851099736.html -javaagent:D:\dev\mave-jar\ja-netfilter\ja-netfilter.jar idea快捷键 Alt + Insert #set/get; 构造方法; toString; 重写方法。。。 Ctrl+Alt+T #将代码包在一个块中,例如……

阅读全文