mybatis
hoho_12
不积跬步,无以至千里。写代码,我们是认真的!
展开
-
attempted to return null from a method with a primitive return type
问题:springboot+mybatisplus 项目,查询的时候报:attempted to return null from a method with a primitive return type。问题分析:后台sql未查询出数据,导致返回的内容与接口中的入参类型不一致,报错。解决方案:修改相应接口的返回类型为包装类。https://blog.csdn.net/weixin_42857099/article/details/85109177...原创 2021-02-07 10:18:16 · 916 阅读 · 0 评论 -
Cause: com.microsoft.sqlserver.jdbc.SQLServerException: 操作数类型冲突: varbinary 与 text 不兼容
问题:使用mybatisplus向数据库插入数据时,后台报了如下错误:Cause: com.microsoft.sqlserver.jdbc.SQLServerException: 操作数类型冲突: varbinary 与 text 不兼容分析:经查发现为给后台text字段传入了null值导致报错,程序中传入的时候如果是null赋值为“”,问题解决。参考文章:https://www.pianshen.com/article/2806732251/...原创 2021-01-20 09:57:54 · 2228 阅读 · 0 评论 -
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)
问题:使用mybatisplus时报了这个错:org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.zzht.hotline.dao.InterfaceLogMapper.insIntLog。问题分析:检查了各种配置,都没有发现问题,最后查了下,发现是pom打包配置的问题。解决方案:https://blog.csdn.net/pingweicheng/article/det原创 2021-01-20 09:52:43 · 202 阅读 · 0 评论 -
springboot+mybatis,mapper调用查询的数据为空,报空指针异常
问题:springboot+mybatis项目,mapper调用查询的时候,后台查询语句返回的数据字段为null,导致此mapper的返回值复制给map对象时报了空指针异常。解决方案:1.在yml文件中添加配置,如下:但是当mapper的返回值为Integer的时候并不管用,所以针对此种情况采用方案2.2.在后台sql语句中加入isnull函数处理,此处使用的是sqlserver数据库。当为空的时候,给数值0,这样就能正常处理了。参考博客:https://blog.csdn.net/原创 2020-12-15 11:45:46 · 4832 阅读 · 0 评论 -
sqlserver数据库,mybatis中时间范围查询的应用。
需求:前端传入开始时间与结束时间作为sql语句的查询条件,数据库为sqlserver,在mybatis中如何写。代码如下:<if test="startTime!=null and startTime!=''"> <![CDATA[ and check_time >= convert(datetime,#{startTime},20) ]]></if><if test="endTime!=null and endTime!=''">原创 2020-10-20 23:14:55 · 1022 阅读 · 0 评论 -
org.apache.ibatis.binding.BindingException: Parameter ‘startTime‘ not found. Available parameters
问题:springboot项目,用了mybatis,当在接口中添加了两个参数startTime与endTime时,后台mapper的xml文件sql中使用这个startTime时,总是报这个错误,找不到这个startTime。分析:之前一直以为是idea的问题,因为idea修改保存之后,debug启动,但是访问接口,修改的内容未体现。需要mvn clean然后install之后才有效果。 但是不管怎样clean或者install,还是一直报这个错误。网上一直找这个问题,大多数说就是在dao层,mappe原创 2020-10-20 23:10:12 · 1209 阅读 · 0 评论 -
mybatis入门程序之代码编写
mybatis入门程序之代码编写原创 2016-09-21 21:40:50 · 822 阅读 · 0 评论 -
mybatis入门程序
mybatis入门程序原创 2016-09-21 19:50:33 · 351 阅读 · 0 评论 -
mybatis框架原理
mybatis框架原理原创 2016-09-21 19:16:49 · 456 阅读 · 0 评论 -
mybatis介绍
mybatis介绍原创 2016-09-21 18:27:44 · 305 阅读 · 0 评论 -
mybatis动态sql
mybatis动态sql原创 2016-09-22 21:50:48 · 404 阅读 · 0 评论 -
mybatis和hibernate的区别
mybatis和hibernate的区别原创 2016-09-22 21:43:53 · 746 阅读 · 0 评论 -
mybatis全局配置文件SqlMapConfig.xml
mybatis全局配置文件SqlMapConfig.xml原创 2016-09-22 19:17:32 · 19192 阅读 · 0 评论