报错类
文章平均质量分 66
南方张大大
我是一个喜欢分享,喜欢交朋友滴淫
展开
-
org.mybatis.spring.MyBatisSystemException
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'model' not found. Available parameters are [module, param1] at org.mybatis.spring...原创 2019-10-12 16:09:55 · 334 阅读 · 0 评论 -
org.apache.ibatis.binding.BindingException
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.jx.smart.green.water.module.mapper.TargetMapper.selectByCondition at org.apache.ibatis.binding.MapperMethod$SqlCom...原创 2019-10-12 15:38:19 · 265 阅读 · 0 评论 -
多线程 快速报错 安全报错
在我的实际开发中我遇到的多线程快速报错,那么什么事快速失败嘞? “快速失败”也就是fail-fast,它是Java集合的一种错误检测机制。当多个线程对集合进行结构上的改变的操作时,有可能会产生fail-fast机制。记住是有可能,而不是一定。例如:假设存在两个线程(线程1、线程2),线程1通过Iterator在遍历集合A中的元素,Iterator这个偏历机制是在内部的expectedModCoun...原创 2018-11-27 09:45:30 · 411 阅读 · 3 评论 -
org.springframework.beans.factory.UnsatisfiedDependencyException
1.问题所在: 通过翻译大家都知道现在这个错误的意思呢是"未满足的依赖异常",没错问题就是在依赖没有满足,问题呢就在这里 当需要把一个带参数的方法变成一个bean对象的时候需要加上我注释掉的那个注解才能成功 2.解决方案: ...原创 2019-07-17 21:46:15 · 130 阅读 · 0 评论 -
spring-boot Redis 加载redisTemplate时报错com.example.demo1.dao.RedisDao required a bean of type
** 报错解决记录 ** 此错误的意思是:注入bean类型不匹配 在注入RedisTemplate<String, Object>的bean时指定了具体类型 @Autowired private RedisTemplate<String, Object> redisTemplate; 我尝试不指定具体类型的bean注入,可以成功注入 /** * 注入时不指定K、...原创 2019-09-23 17:44:07 · 388 阅读 · 0 评论