mybatis注入Date日期值为null的解决方法
程序员文章站
2022-03-28 17:48:24
在今天的一次代码编写中,突然遇到了一个奇怪的问题,在使用mybatis进行date类型插入时,可以很顺利的就插入进数据库中了,可是当我想从mysql中取出date类型的值注入java中的date类型时...
在今天的一次代码编写中,突然遇到了一个奇怪的问题,在使用mybatis进行date类型插入时,可以很顺利的就插入进数据库中了,可是当我想从mysql中取出date类型的值注入java中的date类型时,发现传递过来的值是空的,但是不管是映射还是命名规范都是正确的,就非常的奇怪。
数据库设计:
映射类的设计:
@data public class borrowtime { //借书时间 private date borrowtime; //过期时间 private date expiredtime; }
mapper类:
@select("select borrow_time,expired_time from book_user where bid in (select bid from book_user where uid =#{uid})") public list<borrowtime> findborrowtime(integer uid);
查询出来的值却是这样的:
在网上搜索了很多的资料,试了很多种方法都没有效果,突然想到mybatis在进行查询的时候可以自动的配置对应的映射property,于是便去mapper中试了一下:
@select("select borrow_time,expired_time from book_user where bid in (select bid from book_user where uid =#{uid})") @results({ @result(column = "borrow_time",property = "borrowtime"), @result(column = "expired_time",property = "expiredtime") }) public list<borrowtime> findborrowtime(integer uid);
手动的去将每一个columns和property对应,然后再去查询
终于出现了想要的结果,所以可能是映射字段的问题还是其他的问题还有待以后查证。
到此这篇关于mybatis注入date日期值为null的解决方法的文章就介绍到这了,更多相关mybatis注入date日期值为null内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!