飞哥的海

导航

11 2021 档案

MySQL:批量修改表的排序规则
摘要:SELECT CONCAT('ALTER TABLE `', table_name, '` MODIFY `', column_name, '` ', DATA_TYPE, '(', CHARACTER_MAXIMUM_LENGTH, ') CHARACTER SET utf8mb4 COLLATE 阅读全文

posted @ 2021-11-30 11:49 飞哥的海 阅读(465) 评论(0) 推荐(0)

查看端口被占用?
摘要:1.netstat -aon|findstr "8080" 2.tasklist|findstr "11084" 3.taskkill /f /t /im java.exe 阅读全文

posted @ 2021-11-23 15:16 飞哥的海 阅读(70) 评论(0) 推荐(0)

win10 配置nginx的https
摘要:1.下载 openssl 1.1 (https://slproweb.com/products/Win32OpenSSL.html) 2.openssl genrsa -des3 -out https_openssl.key 1024 3.openssl req -config "C:\Progra 阅读全文

posted @ 2021-11-18 11:07 飞哥的海 阅读(269) 评论(0) 推荐(0)

springboot redis 项目实战 完整篇
摘要:-1.转载于(https://www.jianshu.com/p/5596c3a4978d) 0.文件里加入redis的jar依赖 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter 阅读全文

posted @ 2021-11-11 14:10 飞哥的海 阅读(227) 评论(0) 推荐(0)