Loading

摘要: org.apache.commons.collections; CollectionUtils.isEmpty() public static boolean isEmpty(Collection coll) { return (coll == null || coll.isEmpty()); } 阅读全文
posted @ 2021-03-18 11:35 candidcrat 阅读(90) 评论(0) 推荐(0)
摘要: 依赖 <dependencies> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.10</version> </dependency> </dependencies> 基本注 阅读全文
posted @ 2021-03-18 11:09 candidcrat 阅读(78) 评论(0) 推荐(0)
摘要: 1-1 课程介绍 1-2 项目演示 docker pause 容器name 1-3 开发环境要求(上) 1-4 开发环境要求(下) 2-1 前后端分离框架介绍 2-2 后端项目下载与配置 JWT单点登录 2-3 前台项目的下载与配置 cd 工程目录 npm install npm run dev 3 阅读全文
posted @ 2021-03-17 07:41 candidcrat 阅读(270) 评论(0) 推荐(0)
摘要: 函数接口 Predicate 传入的是一个lambda,返回的布尔值 一个入参 public interface Predicate<T> boolean test(T t); 这个和stream的filter很像 List<Apple> greenList = filter(list, (appl 阅读全文
posted @ 2021-03-16 11:29 candidcrat 阅读(59) 评论(0) 推荐(0)
摘要: 环境搭建 修改hosts vim /etc/hosts 172.16.0.87 bhz87 172.16.0.87 rocketmq-nameserver1 172.16.0.87 rocketmq-master1 172.16.0.87 bhz87 172.16.0.87 rocketmq-nam 阅读全文
posted @ 2021-03-15 14:27 candidcrat 阅读(60) 评论(0) 推荐(0)
摘要: 实战 阅读全文
posted @ 2020-09-20 10:05 candidcrat 阅读(28) 评论(0) 推荐(0)