Collectors toMap,当value为null时空指针报错
罪魁祸首就是HashMap的merge方法了,它的第一行就是这个:if (value == null) throw new NullPointerException();...
罪魁祸首就是HashMap的merge方法了,它的第一行就是这个:if (value == null) throw new NullPointerException();...
报错信息Factory method 'redisson' threw exception; nested exception is org.redisson.client.RedisConne...
主要跟Gradle的版本有关系Gradle3.4新增了Java-library插件,java-library插件使用了新的依赖配置implementation和api。旧的依赖配置compile...
今天在使用mybatis-plus乐观锁插件时,发现乐观锁并没有生效。查了问题发现首先需要查询出结果(也就是需要version),然后再进行更新,这样乐观锁就能起作用了。文档:https://m...
文档地址 https://mybatis.plus/guide/interceptor.html#mybatisplusinterceptor开启乐观锁@EnableTransactionMan...