Parameter ‘uid‘ not found. Available parameters are [arg1, arg0, param1, param2]] with root cause

严重: Servlet.service() for servlet [springDispatcherServlet] in context with path [/finance5_springmvc_mybatis] threw exception [Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter ‘uid’ not found. Available parameters are [arg1, arg0, param1, param2]] with root cause
org.apache.ibatis.binding.BindingException: Parameter ‘uid’ not found. Available parameters are [arg1, arg0, param1, param2]

#{id}…及后面的参数写法也是错误的,因为在MyBatis3中不会识别这样的参数,所以应该改成#{arg0},{arg1}这样的形式。

<!-- 错误之前是根据uid和upw填的参数,mybatis3会报错,springmvc不会 -->
<!-- select * from user where uid = #{uid} and upw = #{upw} -->
<!-- 修改之后用arg0,arg1..填参数,ssm框架不报错了 -->
 select * from user where uid = #{arg0} and upw = #{arg1}

具体解决办法参考了:https://www.cnblogs.com/yao3364/p/7844225.html
我修改之前的SQL语句里面的是根据值指定的,就会报错,修改之后(像下面的)就不报错了。具体原因可以看一下:https://blog.csdn.net/zbdxcyg/article/details/78601249 以及:https://www.cnblogs.com/mingyue1818/p/3714162.html

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
  PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.finance3.springmvc.dao.queryUser">


<!-- 	public List<User> queryUser(String uid, String upw);
		public User getUser(String uid,String upw);
		public String getUserByUid(String uid);
		public int alertUser(String uid,String password);
 -->
  <select id="queryUser" resultType="User">
  	<!-- 错误之前是根据uid和upw填的参数,mybatis3会报错,springmvc不会 -->
    <!-- select * from user where uid = #{uid} and upw = #{upw} -->
    <!-- 修改之后用arg0,arg1..填参数,ssm框架不报错了 -->
    select * from user where uid = #{arg0} and upw = #{arg1}
  </select>
  
  <select id="getUser" resultType="User">
  	select * from user where uid = #{arg0} and upw = #{arg1} 
  </select>
  
  <select id="getUserByUid" resultType="String">
  	select uid from user where uid=#{uid}
  </select>
  
  <update id="alertUser">
  	update user set upw=#{arg1} where uid=#{arg0}
  </update>
</mapper>
  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值