严重: 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>