上一页 1 2 3 4 5 6 ··· 44 下一页

java如何进行排列组合运算

摘要: import java.util.Stack;/** * 数学排列公式工具类 */public class ArrangementUtil { public static Stack<Integer> stack = new Stack<Integer>(); private static int 阅读全文
posted @ 2020-10-22 18:10 小甜瓜安东泥 阅读(1032) 评论(0) 推荐(0) 编辑

微服务实战SpringCloud之Feign简介及使用

摘要: Feign的目标 feign是声明式的web service客户端,它让微服务之间的调用变得更简单了,类似controller调用service。Spring Cloud集成了Ribbon和Eureka,可在使用Feign时提供负载均衡的http客户端。 引入Feign 项目中使用了gradle作为 阅读全文
posted @ 2020-10-22 14:40 小甜瓜安东泥 阅读(515) 评论(0) 推荐(0) 编辑

windows如何安装redis

摘要: 一:下载 下载地址: windows版本: https://github.com/MSOpenTech/redis/releases Linux版本: 官网下载: http://www.redis.cn/ git下载 https://github.com/antirez/redis/releases 阅读全文
posted @ 2020-10-21 17:28 小甜瓜安东泥 阅读(343) 评论(0) 推荐(0) 编辑

docker-compose如何查看当前版本

摘要: docker-compose version 阅读全文
posted @ 2020-10-21 16:19 小甜瓜安东泥 阅读(5340) 评论(0) 推荐(0) 编辑

Oracle VM VirtualBox 安装 This kernel requires an x86-64 cpu,but only detected an i686 cpu.

摘要: VT-x/AMD-V 硬件加速在您的系统中不可用。您的 64-位虚拟机将无法检测到 64-位处理器,从而无法启动。 Unable to boot – please use a kernel appropriate for your CPU. This kernel requires an x86-6 阅读全文
posted @ 2020-10-20 16:39 小甜瓜安东泥 阅读(771) 评论(0) 推荐(0) 编辑

java为菜单树设置无限层级的序号

摘要: private Integer lastLayerNum = 1;//上一级的菜单的层级private String lastSortNum = "";//上一级的菜单的序号private Map<Integer, String> layerSortNumMap = new HashMap<Inte 阅读全文
posted @ 2020-10-16 16:20 小甜瓜安东泥 阅读(577) 评论(0) 推荐(0) 编辑

java判断两个list是否有交集

摘要: import java.util.Collections Collections.disjoint(list1, list2); 阅读全文
posted @ 2020-10-16 11:50 小甜瓜安东泥 阅读(11985) 评论(0) 推荐(0) 编辑

java如何把对象转化成json

摘要: package cn.hopetesting.com.test;import cn.hopetesting.com.domain.User;import com.fasterxml.jackson.core.JsonProcessingException;import com.fasterxml.j 阅读全文
posted @ 2020-10-12 18:29 小甜瓜安东泥 阅读(1581) 评论(0) 推荐(0) 编辑

Java连接Mysql数据库异常:Public Key Retrieval is not allowed

摘要: Java连接Mysql数据库异常:Public Key Retrieval is not allowed 本文主要介绍通过connector 8.0.11连接Mysql数据库,出现Public Key Retrieval is not allowed(Exception in thread “mai 阅读全文
posted @ 2020-09-27 10:59 小甜瓜安东泥 阅读(14788) 评论(0) 推荐(0) 编辑

java8的时间段比较处理工具类TimeUtils

摘要: import org.jooq.lambda.tuple.Tuple2;import java.time.LocalDate;import java.time.LocalDateTime;import java.time.LocalTime;import java.util.List;import 阅读全文
posted @ 2020-08-25 16:57 小甜瓜安东泥 阅读(958) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 44 下一页