0
点赞
收藏
分享

微信扫一扫

nested exception is IncompleteElementException: Could not find parameter map


错误信息如下:

of init method failed; nested exception is org.apache.ibatis.builder.IncompleteElementException: 
Could not

错误原因:

<insert id="insertTestInfo" parameterMap="map"
//省略
</insert>

应该是(替换parameterMap为parameterType):

<insert id="insertLoginInfo" parameterType="map"
//省略
</insert>

作者:jiankunking ​


举报

相关推荐

0 条评论