MyBatis-Plus 进行插入操作时,MyBatis-Plus 无法正确处理参数映射,导致 Type handler was null 的错误。以下是可能的原因和解决方法
SorterBaseTableSql 是自定义类。
mybatis-plus报错 Cause: java.lang.IllegalStateException: Type handler was null on parameter mapping for property ‘params’. It was either not specified and/or could not be found for the javaType (java.util.Map) : jdbcType (null) combination.
检查实体类 SorterBaseTableSql 的定义
确保 SorterBaseTableSql 实体类的属性类型是 MyBatis-Plus 支持的基本类型(如 String、Integer、Date 等),并且属性名称与数据库字段名称一致。
import com.baomidou.mybatisplus.annotation.TableName;
import java.util.Date;
@TableName("sorter_base_table_sql") // 确保表名正确
public class SorterBaseTableSql {
private String id; // 对应数据库字段 id
private String logId; // 对应数据库字段 log_id
private String tableName; // 对应数据库字段 table_name
private String tableSql; // 对应数据库字段 table_sql
private Date createdDate; // 对应数据库字段 created_date
// Getters and Setters
}
检查数据库表结构
确保数据库表 sorter_base_table_sql 的字段类型与实体类的属性类型匹配。例如:
id 和 logId 应该是 VARCHAR 或 CHAR 类型。
tableName 和 tableSql 应该是 VARCHAR 或 TEXT 类型。
createdDate 应该是 TIMESTAMP 或 DATETIME 类型。
检查 MyBatis-Plus 的配置
确保 MyBatis-Plus 的配置正确,特别是以下配置:
1.实体类是否使用@TableName 注解。
2.是否配置了 MybatisPlusProperties(如 mapper-locations、type-aliases-package 等)。
mybatis-plus:
mapper-locations: classpath*:mapper/*.xml
type-aliases-package: com.example.entity
configuration:
map-underscore-to-camel-case: true
检查 insert 方法的实现
确保 iSorterBaseTableService.insert(sorterBaseTableSql) 方法是基于 MyBatis-Plus 的 IService 接口实现的。
import com.baomidou.mybatisplus.extension.service.IService;
public interface ISorterBaseTableService extends IService<SorterBaseTableSql> {
// 自定义方法(如果有)
}
显式指定 jdbcType
如果某些字段可能为 null,需要在 MyBatis 的 Mapper 文件中显式指定 jdbcType,以避免 MyBatis 无法推断类型。
<insert id="insert" parameterType="com.example.SorterBaseTableSql">
INSERT INTO sorter_base_table_sql (id, log_id, table_name, table_sql, created_date)
VALUES (
#{id, jdbcType=VARCHAR},
#{logId, jdbcType=VARCHAR},
#{tableName, jdbcType=VARCHAR},
#{tableSql, jdbcType=VARCHAR},
#{createdDate, jdbcType=TIMESTAMP}
)
</insert>
检查 MyBatis-Plus 版本
某些 MyBatis-Plus 版本可能存在类型处理器相关的 Bug。尝试升级到最新版本。
在 pom.xml 中更新版本:
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>最新版本</version>
</dependency>
调试和日志
启用 MyBatis-Plus 的 SQL 日志功能,查看详细的 SQL 执行日志,定位问题。
在 application.yml 或 application.properties 中启用日志:
mybatis-plus:
configuration:
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
检查是否有自定义类型处理器
如果 SorterBaseTableSql 中有自定义类型的属性,需要为其实现类型处理器,并在 MyBatis-Plus 中注册。
@MappedTypes(MyCustomType.class)
public class MyCustomTypeHandler extends BaseTypeHandler<MyCustomType> {
@Override
public void setNonNullParameter(PreparedStatement ps, int i, MyCustomType parameter, JdbcType jdbcType) throws SQLException {
ps.setString(i, parameter.toString());
}
@Override
public MyCustomType getNullableResult(ResultSet rs, String columnName) throws SQLException {
return MyCustomType.fromString(rs.getString(columnName));
}
@Override
public MyCustomType getNullableResult(ResultSet rs, int columnIndex) throws SQLException {
return MyCustomType.fromString(rs.getString(columnIndex));
}
@Override
public MyCustomType getNullableResult(CallableStatement cs, int columnIndex) throws SQLException {
return MyCustomType.fromString(cs.getString(columnIndex));
}
}
在 MyBatis-Plus 配置中注册:
mybatis-plus:
type-handlers-package: com.example.handler
检查是否有其他配置冲突
确保项目中不存在其他 MyBatis 或 MyBatis-Plus 的配置冲突。例如:
是否同时引入了 mybatis 和 mybatis-plus 的依赖。
是否有重复的 mybatis-config.xml 文件。
问题纠错
我此处问题报错是因为自定义类有继承entity,导致继承了相关属性,mybatis-plus自动绑定数据库字段,导致有继承的类不能匹配的上,导致报错。
@Data
@TableName("sorter_base_table_sql")
public class SorterBaseTableSql extends BaseEntity
{
private String id;
private String logId;
private String tableName;
private String tableSql;
private Date createdDate;
}
总结
根据错误信息,问题的核心是 MyBatis-Plus 无法为 java.util.Map 类型的参数找到合适的类型处理器。通过以下步骤可以解决:
1.检查实体类 SorterBaseTableSql 的定义和数据库表结构。
2.确保 MyBatis-Plus 的配置正确。
3.显式指定 jdbcType。
4.升级 MyBatis-Plus 到最新版本。
5.启用 SQL 日志,进一步定位问题。
如果问题仍未解决,可以提供更多上下文信息(如 SorterBaseTableSql 类的定义、iSorterBaseTableService 的实现等),以便进一步分析。