Mybaits 注释需谨慎!
Posted OkidoGreen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mybaits 注释需谨慎!相关的知识,希望对你有一定的参考价值。
今天运行项目遇到一个报错
Caused by: org.apache.ibatis.type.TypeException: Could not set parameters for mapping: ParameterMappingproperty='code', mode=IN, javaType=class java.lang.Object, 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: 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里不是不能写注释,而是注释不能有#,mybatis仍旧会把#算成一个带注入的参数
以上是关于Mybaits 注释需谨慎!的主要内容,如果未能解决你的问题,请参考以下文章