程序包 net.qimooc.commons.utils
-
类概要 类 说明 AopUtils Base62 Base62 numbers/strings encoding/decoding utility methods.BeanUtils BytesBase62 A Base62 encoder/decoder.IllegalArguments Null or empty argument exception utilities.ThreadLocalUtils ThreadLocal 工具类,通过在ThreadLocal存储map信息,来实现在ThreadLocal中维护多个信息
e.g.ThreadLocalUtils.put("key",value);
ThreadLocalUtils.get("key");
ThreadLocalUtils.remove("key");
ThreadLocalUtils.getAndRemove("key");
ThreadLocalUtils.get("key",()->defaultValue);
ThreadLocalUtils.clear();