摘要:
模块 介绍 hutool-aop JDK动态代理封装,提供非IOC下的切面支持 hutool-bloomFilter 布隆过滤,提供一些Hash算法的布隆过滤 hutool-cache 简单缓存实现 hutool-core 核心,包括Bean操作、日期、各种Util等 hutool-cron 定时任 阅读全文
摘要:
背景 一次开发,将SimpleDateFormat作为参数传参到各个方法中,结果报错java.lang.NumberFormatException: multiple points 原因 SimpleDateFormat是线程不安全的,只能在单线程中使用 阅读全文
摘要:
Iterable To List List<ReceiverMiner> receiverMiners = new LinkedList<>(); Iterable<ReceiverMiner> receiverMinerIterable = receiverMinerRepository.find 阅读全文
摘要:
在foreach()中使用return 效果:退出当前条件下的循环并执行下一次循环 List<Integer> testList = new LinkedList<>(); testList.add(0); testList.add(1); testList.add(2); testList.add 阅读全文