使用Springboot框架时无法在Mybatis中设置映射参数
Could not set parameters for mapping in Mybatis when using Springboot framework
我是Java web的新手,我在Stack Overflow中尝试了很多方法来解决这个问题,但都失败了。你能帮帮我吗?
我代码中的接口是:
public List<Answer> selectAnswerByUser(@Param("user") User user, @Param("id") Integer id);
其中Answer
和User
是我定义的两个类。
映射器是:
<select id="selectAnswerByUser" parameterType="java.util.Map" resultType="Answer">
select * from answer where exercise_id=#{id} and user_email='#{user.email}'
</select>
其中电子邮件是 Class 用户的变量。
它抛出:
nested exception is org.apache.ibatis.type.TypeException: Could not set parameters for mapping: ParameterMapping{property='user.email', 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 #2 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 #2 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 (2 > number of parameters, which is 1).
我不知道这个例外。
当您传递两个参数 User 和 Integer 时,您正在将 parameterType
配置为 parameterType="java.util.Map"
。删除 parameterType="java.util.Map"
,它应该根据 @Param
注释“自动”映射 parameterTypes
。或者尝试 parameterType="map"
我是Java web的新手,我在Stack Overflow中尝试了很多方法来解决这个问题,但都失败了。你能帮帮我吗?
我代码中的接口是:
public List<Answer> selectAnswerByUser(@Param("user") User user, @Param("id") Integer id);
其中Answer
和User
是我定义的两个类。
映射器是:
<select id="selectAnswerByUser" parameterType="java.util.Map" resultType="Answer">
select * from answer where exercise_id=#{id} and user_email='#{user.email}'
</select>
其中电子邮件是 Class 用户的变量。
它抛出:
nested exception is org.apache.ibatis.type.TypeException: Could not set parameters for mapping: ParameterMapping{property='user.email', 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 #2 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 #2 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 (2 > number of parameters, which is 1).
我不知道这个例外。
当您传递两个参数 User 和 Integer 时,您正在将 parameterType
配置为 parameterType="java.util.Map"
。删除 parameterType="java.util.Map"
,它应该根据 @Param
注释“自动”映射 parameterTypes
。或者尝试 parameterType="map"