摘要: 本文是学习慕课网的实战https://www.imooc.com/learn/824 同时结合菜鸟教程的思想https://www.runoob.com/docker/docker-architecture.html 个人感觉菜鸟教程的定义简单直观,而慕课的实际操作更好 第一章 什么是docker 阅读全文
posted @ 2019-06-15 13:40 手中天 阅读(273) 评论(0) 推荐(0) 编辑
摘要: 今日小闲,风轻云淡,与妻小吵,关闭聊天,每日打卡,快乐神仙。。 1.UltraISO+linux最新镜像 安装linux,就不再累述 2.到、/etc/sysconfig/network-scripts/ifcfg-enp8s0 (大家可能是这个目录下ifcfg-en* 其他文件名) ONBOOT= 阅读全文
posted @ 2019-06-15 12:43 手中天 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 0.maven依赖 <!-- https://mvnrepository.com/artifact/io.netty/netty-all --> <dependency> <groupId>io.netty</groupId> <artifactId>netty-all</artifactId> < 阅读全文
posted @ 2019-06-14 16:19 手中天 阅读(374) 评论(0) 推荐(0) 编辑
摘要: main方法 public static void main(String[] args) { BasicTextEncryptor textEncryptor = new BasicTextEncryptor(); //加密所需的salt(盐) textEncryptor.setPassword( 阅读全文
posted @ 2019-06-13 18:08 手中天 阅读(1896) 评论(0) 推荐(0) 编辑
摘要: 第一章 课程介绍 1-1 00-课程介绍 第二章 NoSql概述 2-1 01-NoSQL的概述 为什么需要NoSQL? High performance - 高并发读写 Huge Storage - 海量数据的高效率存储和访问 High Scalability && High Availabili 阅读全文
posted @ 2019-06-10 22:03 手中天 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 1.添加索引 ALTER TABLE `cw_base_house` ADD INDEX idx_house ( `villageCode`, `buildingNo`, `unitNo`, `houseNo` ) USING BTREE; 2.左右连接 左连接,左边放小表(数据少),左边和右边比较 阅读全文
posted @ 2019-05-30 14:54 手中天 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 1.Mapper3 常用接口 https://blog.csdn.net/fangwenzheng88/article/details/78713091 2.分页 pageHelper 阅读全文
posted @ 2019-05-14 21:04 手中天 阅读(340) 评论(0) 推荐(0) 编辑
摘要: 1.win10 到Microsoft store 下载ubantu,并安装 2.开启SSH服务,需要开启openssh-server 删除ssh:sudo apt-get remove --purge openssh-server 重新安装ssh: root@ubuntu:~# sudo apt-g 阅读全文
posted @ 2019-04-06 13:43 手中天 阅读(299) 评论(0) 推荐(0) 编辑
摘要: svn:更新文件发生冲突。cmd 到当前svn目录,svn cleanup 阅读全文
posted @ 2019-04-03 09:56 手中天 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 1.run.sh 文件 ./run.sh start启动 ./run.sh stop 停止 ./run.sh restart重启 ./run.sh install安装 ./run.sh uninstall卸载 #!/bin/bash ### BEGIN INIT INFO # Provides: N 阅读全文
posted @ 2019-03-19 15:12 手中天 阅读(2468) 评论(0) 推荐(0) 编辑