Cause: org.apache.ibatis.type.TypeException: Could not set parameters for mapping: ParameterMapping{

错误是这样说的:
原因:org.apache.ibatis.type。TypeException:无法设置映射参数:ParameterMapping{property=‘username’, mode=IN, javaType=class java.lang。
错点::ParameterMapping
就是下面代码里的parameterType这个参数写错了
注意注意
parameterType在查询全部方法不需要这个参数,也就是没有
parameterType添加返回的返回的是****实体类的全类名
parameterType在更新方法里,这个参数返回的也是实体类的全类名
parameterType在删除方法里,这个参数返回的也是实体类的Integer,就是成功影响一条数据的记录表示成功

    
    
    
    
    
    

        insert into user(username,birthday,sex,address) VALUES (#{username},#{birthday},#{sex},#{address});
    
    

    
        UPDATE `user` set username=#{username},birthday=#{birthday},sex=#{sex},address=#{address} WHERE id=#{id}
    
    

     
        DELETE FROM `user` WHERE id=#{uid}
    
    

    
    

    
    

你可能感兴趣的:(Mybatis)