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

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语句,标注好列。

你可能感兴趣的:(错误日志,java,mybatis,hibernate,spring,jdk)