
Java中ORM相关
文章平均质量分 79
常用ORM框架MyBatis
heng_yan
这个作者很懒,什么都没留下…
展开
-
Mybatis错误:Result Maps collection already contains value for ***
原文URL:https://blog.youkuaiyun.com/maoyuanming0806/article/details/77870345使用mybatis时,服务器启动时出错:Result Maps collection already contains value(1)异常排查根据错误信息定位usermapper.xml文件,最后发现,前400行和后400行代码一模一样,如:解...原创 2019-02-15 13:05:30 · 1980 阅读 · 0 评论 -
mybatis中日期类型大于、小于号转义符判断
1、大小写转义符在项目中查询时间段的sql语句(时间类型为datetime或date):<if test="createdTimeStart != null"> AND a.createdTime &gt;= #{createdTimeStart} </if> <if test="createdTi...原创 2019-01-29 16:20:19 · 12528 阅读 · 0 评论 -
mybatic中应用
1、mabatic中mapper.xml中输入参数paramtype与返回值类型resulttype问题:(1)输入参数为单个String类型,返回基础resultMap类型: selectfrom fj_settle_billwherepaymentId = #{paymentId,jdbcType=VARCHAR }and premiumFlag='1'原创 2018-01-16 17:50:36 · 290 阅读 · 0 评论