
mybatis
帅气的梧桐述
大道至简,知易行难。
展开
-
Mybatis Generator最完整配置详解
Mybatis Generator最完整配置详解翻译 2017-05-23 21:38:56 · 5697 阅读 · 1 评论 -
Springboot整合mybatis出现无法注入mapper接口的问题处理
异常描述:org.apache.ibatis.binding.BindingException: Invalid bound statement (not found):com.sf.dao.UserMapper.selectByPrimaryKey起初怀疑是在整合mybatis时的配置有错误,反复修改和测试发现配置都没问题。最后检查mapper.xml文件才发现namespace的定义路径名字与...原创 2017-07-03 20:47:47 · 36683 阅读 · 4 评论 -
mybatis 解析Integer为0和浮点型为0.00的属性,解析成空字符串
使用Mybatis时,常常会判断属性是否为空1 <if test="type != null and type != ''"> 2 and type = #{type} 3 </if> 当type为Integer类型,并且type值为0时,该if判断却为false。当type为0时,Mybatis会解析成'' 空字符串。为了避免这个问题,改成下面这样写...原创 2018-06-19 14:57:11 · 1006 阅读 · 0 评论