mybatis查询数据下标越界

https://github.com/mybatis/mybatis-3/issues/1567

### The error occurred while handling results
### SQL: SELECT sku_code,sku_key,sku_value,style_no,sku_status,lsin,is_old,last_modified,date_added,source,stock_quantity,is_custom FROM products_sku WHERE sku_code=?
### Cause: java.lang.IndexOutOfBoundsException: Index: 12, Size: 12

问题很奇葩,因为只是个简单的select* ,没有使用到数组,却出现了下标越界
解决:
实体不能存在数据库没有的字段
https://github.com/mybatis/mybatis-3/issues/1567

那么如何允许实体存在数据库不存在的字段呢??
@TableField(exist=false)
但是我试了依然报错
后面发现是@Builder 注解在搞鬼
https://www.projectlombok.org/features/Builder

你可能感兴趣的:(mybatis)