解决使用mybatis取值,字段赋值错误的问题
使用mybatis取值,字段赋值错误
我在读取数据库的表信息时,出现了不同字段取值对应不上的情况,有些字段的赋值是错位置的,
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
BaseResultMap 里的字段对应是错误的,估计是Map里字段顺序的问题。改成了
<update id="updateByPrimaryKeySelective" parameterType="com.tour.info.admin.model.Template">
可以正确读取
另外还查知:
还有mybatis ,mapper.xml的各个字段的顺序是不影响赋值的,是自动对应的。
mybatis映射赋值失败
异常:TypeException: Could not set parameters for mapping
错误输出
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.type.TypeException: Could not set parameters for mapping: ParameterMapping{property=‘pmNo’, mode=IN, javaType=class java.lang.String, jdbcType=null, numericScale=null, resultMapId=‘null’, jdbcTypeName=‘null’, expression=‘null’}. Cause: org.apache.ibatis.type.TypeException: Error setting non null for parameter #1 with JdbcType null . Try setting a different JdbcType for this parameter or a different configuration property. Cause: java.sql.SQLException: Parameter index out of range (1 > number of parameters, which is 0).
错误造成原因
在mybatis中SQL添加了注释
解决方法
将SQL中注释删除即可
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
相关文章
springboot项目中的bootstrap.yml配置不生效的原因及解决(没有自动提示)
新创建一个 springboot项目,添加了 bootstrap.yml 文件,发现文件并没有如预期变成绿色叶子,编写的时候也没有自动提示,启动的时候,发现端口是8080,由此发现配置并没有生效,所以本文给大家讲解了springboot项目中的bootstrap.yml配置不生效的原因及解决2024-01-01关于SpringBoot3.x中spring.factories功能被移除的解决方案
这篇文章主要介绍了SpringBoot3.x中spring.factories功能被移除的解决方案,在配置好相关依赖、最小启动类和配置之后,发现项目无法启动,于是根据启动上下文日志和按行DEBUG找到原因并且在等待组件升级兼容之前进行临时性解决,需要的朋友可以参考下2022-12-12SpringBoot通过token实现用户互踢功能(具体实现)
所谓token,既用户能够在一定时间内证明自己身份的一长串字符串,这篇文章主要介绍了SpringBoot通过token实现用户互踢功能,需要的朋友可以参考下2024-04-04Springboot通用mapper和mybatis-generator代码示例
这篇文章主要介绍了Springboot通用mapper和mybatis-generator代码示例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下2020-12-12
最新评论