MyBatis错误合集

一、无法添加到数据库

原因:忘了添加sq.commit();语句

 

二、查询失败

原因:没有使用工具类,导致没有重新更新。

 

三、无法查询元素

源代码

<resultMap type="com.feicui.entity.News" id="seleceNewsByDao">
		<id column="id" property="id" />
		<result column="pid" property="pid" />
		<collection property="childNews"
			ofType="com.feicui.entity.News" select="selectNewByDaoXu"
			column="pid"></collection>
	</resultMap>
	<select id="selectNewByDaoXu"  resultMap="seleceNewsByDao">
	select * from news 
	<where>
	<if test="id != 0">
		 id=#{pid}
		</if></where>
	</select>

错误原因

org.apache.ibatis.exceptions.PersistenceException: 
### Error querying database.  Cause: org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'id' in 'class java.lang.Integer'

解决方法:符号用错。并且<select>标签里的大于小于是&gt和&lt

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值