欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

解决:java.lang.IllegalStateException: Type handler was null on parameter……

程序员文章站 2022-03-08 17:25:00
...

java.lang.IllegalStateException: Type handler was null on parameter mapping for property 'accusedInfos'. It was either not specified and/or could not be found for the javaType (java.util.List) : jdbcType (null) combination.

实体类里面有List,然后Insert时报的这个错,用的是自动生成的Insert方法。

解决方式:

1、在实体类中的List上加注解@TableField(exist = false)。
2、手写Insert语句,标注好列。