摘要: 1 复制项目地址 2 新建项目 3 输入地址 4 别忘了更改setting位置 不然拉不到maven 阅读全文
posted @ 2021-06-04 17:50 未确定 阅读(763) 评论(0) 推荐(0) 编辑
摘要: 1 cst 转 时间格式 public class 时间转换 { /** * CSt 转换日期格式 * @param cstTime * @return */ public static void main(String[] args) { String time="Wed Jun 02 17:53 阅读全文
posted @ 2021-06-03 18:11 未确定 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 本次记录,学习参考大概。 es 封装搜索 EsSearchService public interface EsSearchService { /** * 查询列表 * @param index * @param from * @param size * @param query * @param 阅读全文
posted @ 2021-06-02 11:43 未确定 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 项目启动包了这个错 Error running 'admin': Unable to open debugger port (127.0.0.1:49717): java.net.SocketException "Interrupted function call: accept failed 1 阅读全文
posted @ 2021-06-01 15:16 未确定 阅读(1279) 评论(0) 推荐(1) 编辑
摘要: public class 时间转换天时分秒 { public static void main(String[] args) { //时间差 long timeDifference=12313213; System.out.println(conversion(timeDifference)); } 阅读全文
posted @ 2021-05-19 17:43 未确定 阅读(351) 评论(0) 推荐(0) 编辑
摘要: 1 must, must not,should的区别 must 返回的文档必须满足must子句的条件,类似于 == and must not返回的文档必须不满足must not 子句的条件 类似于!= not should 返回的文档只要满足should中的一个条件即可 类似于 || or 2 各类 阅读全文
posted @ 2021-05-18 14:32 未确定 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 今天在代码中看到这么一段写法,记录下来。list转map. 1 循环 建一个list 然后循环赋值。 这样,一个key对应一个value. 2 Collectors.toMap java8新特性。诸多方法, 这个collectors.map 有三个方法。 参数含义分别是: keyMapper:Key 阅读全文
posted @ 2021-05-12 10:57 未确定 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 1 Java 静态对象 static 2 lombok——@EqualsAndHashCode(callSuper = true)注解的使用 3Jackson objectMapper.readValue 方法 详解 4 ES详情解释 5 设计模式 6 Java8中使用以下类计算日期时间差:Peri 阅读全文
posted @ 2021-05-07 11:12 未确定 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 1 docker Docker是一个虚拟环境容器,可以将你的开发环境、代码、配置文件等一并打包到这个容器中,并发布和应用到任意平台中。比如,你在本地用Python开发网站后台,开发测试完成后,就可以将Python3及其依赖包、Flask及其各种插件、Mysql、Nginx等打包到一个容器中,然后部署 阅读全文
posted @ 2021-04-30 16:18 未确定 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 1 CollectionUtils.union() 取并集 2 CollectionUtils.intersection 取交集 3CollectionUtils.disjunction 交集的补集 4 CollectionUtils.subtract 差集 5 CollectionUtils.co 阅读全文
posted @ 2021-04-29 17:20 未确定 阅读(185) 评论(0) 推荐(0) 编辑