Mybatis踏坑(一),只传一个参数报错问题

平时我们在使用Mybaits时,我们会仅仅只传入一个参数,但是在xml文件中我们总会以为是相同的参数,例如:

Dao接口(注意红色标识)

List<Permission> findAllPermission(int type);

Mybaits的mapper文件

<select id="findUserPermission" resultType="permission"
		parameterType="Integer">
		select
		permission.menu_name,permission.id,permission.url,permission.featrues,
		permission.grade,permission.menu_icon
		from user,role,permission
		<where>
			role.role_id=user.type and role.role_id=permission.grade
			and role.role_id=permission.grade 
			<if test="type ==2">
				and user.type=in(1,2) 
			</if>
		</where>
	</select>

这样一搞,运行后就会报错,错误如下:(堆栈信息删除了)

org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: 
There is no getter for property named 'type' in 'class java.lang.Integer'

解决方案如下:(将原来的type改成_parameter)

<select id="findUserPermission" resultType="permission"
		parameterType="Integer">
		select
		permission.menu_name,permission.id,permission.url,permission.featrues,
		permission.grade,permission.menu_icon
		from user,role,permission
		<where>
			role.role_id=user.type and role.role_id=permission.grade
			and role.role_id=permission.grade 
			<if test="_parameter"==2">
				and user.type=in(1,2) 
			</if>
		</where>
	</select>



猜你喜欢

转载自blog.csdn.net/weixin_41622183/article/details/79375943
今日推荐