摘要: 1、安装https://www.runoob.com/docker/centos-docker-install.html 阅读全文
posted @ 2020-01-17 17:24 艾白羊 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 1、安装:https://www.cnblogs.com/stulzq/p/9291237.html 2、使用:https://blog.csdn.net/shuizhihun07/article/details/80168076 阅读全文
posted @ 2020-01-17 10:47 艾白羊 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 1、List集合分批操作的工具: List<Integer> list = Arrays.asList(1, 2, 3, 4, 5, 6, 7, 8, 9, 0); // 使用guava对list进行分割 List<List<Integer>> supList1 = Lists.partition( 阅读全文
posted @ 2020-01-08 21:15 艾白羊 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 1、https://www.zybuluo.com/Cesar/note/253862 阅读全文
posted @ 2020-01-07 16:43 艾白羊 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 1、centos7安装redis 4.0.5: 1.1、下载redis 4.0.5; 地址 1.2、安装redis 4.0.5(依次执行以下命令); tar -zxvf redis-4.0.5.tar.gz cd redis-4.0.5 make -- 该命令将在redis-4.0.5/src文件夹 阅读全文
posted @ 2019-11-24 17:04 艾白羊 阅读(536) 评论(0) 推荐(0) 编辑
摘要: 1、Fastjson API入口类是com.alibaba.fastjson.JSON,常用的序列化操作都可以在JSON类上的静态方法直接完成。 public static final Object parse(String text); // 把JSON文本parse为JSONObject或者JS 阅读全文
posted @ 2019-11-17 18:46 艾白羊 阅读(2627) 评论(0) 推荐(0) 编辑
摘要: Win+L:快速锁屏 Win+E:打开「我的电脑」 Win+D:进入桌面 Win+R:快速打开运行功能 Win+← \ →:分屏操作 Win+↓\↑:窗口最小化\最大化切换 Win+空格:切换多个输入法 Win+I:打开Windows设置 Win+数字键:打开任务栏上第n个程序 Ctrl+Shift 阅读全文
posted @ 2019-11-04 23:59 艾白羊 阅读(224) 评论(0) 推荐(0) 编辑
摘要: 1、通过继承Thread的方式创建线程 2、通过实现Runnable接口创建线程 3、通过实现Callable接口创建有返回值的线程 阅读全文
posted @ 2019-10-27 20:44 艾白羊 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 参考:https://juejin.im/post/5ad54d76f265da23970759d3 阅读全文
posted @ 2019-10-08 22:51 艾白羊 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 1、两个表关联查询映射: 1.1、StudentMapper.xml 相关代码 1.2、application.yml 配置文件设置下划线转驼峰 1.3、StudentCourseDTO 类: 2、主表关联子表: 2.1、StudentMapper.xml 相关代码 2.2、CourseMapper 阅读全文
posted @ 2019-10-06 21:03 艾白羊 阅读(436) 评论(0) 推荐(0) 编辑