- 博客(3)
- 问答 (1)
- 收藏
- 关注
原创 ThreadPoolExecutor源码解析
ThreadPoolExecutor源码解析及工作机制首先介绍前提条件及本文用词说明线程池中线程 == Worker线程(实际是Worker.thread)线程池执行的任务 == task(也就是调用execute(Runnable r)传入的r)private static final int COUNT_BITS = Integer.SIZE - 3; // 后面低29位来源// ctl贯穿全文标志,32位,高三位记录状态低29位记录WorkerCount数量,初
2020-06-20 23:25:39 186
原创 ConcurrentHashMap源码解析
put()方法/** * Implementation for put and putIfAbsent * onlyIfAbsent为true时,key值已存在则不修改 */ final V putVal(K key, V value, boolean onlyIfAbsent) { // key或者value为空则报空指针异常 if (key == null || value == null) throw new NullPoin
2020-07-06 15:29:21 279
原创 springmvc使用hibernate-validation校验器异常
springmvc使用hibernate-validation校验器异常,弄了几天了不知道哪里有问题,就一直报错,希望大神帮忙看看,指导指导异常:org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.web.servlet.mvc
2017-12-02 13:19:22 3246 5
空空如也
springmvc整合mybatis,使用hibernate-validation异常
2017-12-02
TA创建的收藏夹 TA关注的收藏夹
TA关注的人