MyBaties
intelrain
这个作者很懒,什么都没留下…
展开
-
MyBatis Generator配置后之后的使用
项目右键-Run as-Maven buildGoals 填上mvn mybatis-generator:generate原创 2018-03-23 17:02:19 · 252 阅读 · 0 评论 -
SpringBoot的Invalid bound statement 问题解决
转载自:http://blog.csdn.net/oMrLeft123/article/details/70239951解决org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)错误一般的原因 Mapper interface和xml文件的定义对应不上,需要检查包名,namespace,函数名称...转载 2018-03-14 09:45:29 · 3829 阅读 · 0 评论 -
Mybatis自己写mapper.xml
1、mapper.xml 里面自己写文件 select count(id) from t_envnew where name = #{name,jdbcType=VARCHAR} 2、mapper类 int countByPduName(String name);3、调用方法,里面含有自己写的数据库这种格式原创 2018-04-20 17:28:39 · 1562 阅读 · 0 评论 -
Intellij IDEA 2016学习系列之(二)mybatis-generator自动生成
转载自https://blog.csdn.net/liudongdong0909/article/details/51534735转载 2018-05-23 10:19:07 · 297 阅读 · 0 评论 -
Mybatis update时判断为空的写法和like的写法
update zendtao_new.customcalendarinfo a<set> <if test="pdu != null"> a.pduname = #{pdu,jdbcType=VARCHAR}, </if> <if test="name != null"> a.name = ...原创 2018-11-16 15:41:45 · 7852 阅读 · 2 评论