标签:mybatis timestamp java
今天 在运行项目的时候报错:There is no getter for property named ‘systemTime‘ in ‘class java.sql.Timestamp‘
问题分析:Mybatis会默认为systemTime作为java.sql.Timestamp 这个类的一个属性,所以需要提供systemTime的get方法,从而导致报错。
解决方法:在接口中进行声明:public List getCardForZonesByCondition(@Param(value="systemTime")Timestamp systemTime);
使用mybatis时可能出现的问题
原文地址:http://blog.csdn.net/u010056403/article/details/44854861