mybatis使用中出现的错误!

  错误提示:  message Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'username' in 'class java.lang.String';

  错误原因:${}和#{}之间的乱用。

    ${}将传入的数据直接放入sql中,只是单纯的替换

    例如:

      selected * from student where username=${username};

      相当于:selected * from student where username=zjx;

      所以说如果数据为Integer类型,使用${}不会出错,如果使用String类型的,那么查询语句出错。

    #{}被解析为参数占位符

    例如:

      selected * from student where username=#{username};

      相当于:selected * from student where username='zjx';

      这样查询语句不会像${}那样出错。

  推荐:能用#{}的时候尽量用,它可以很大程度上减少sql注入。如果遇到order by使用${}。

  解决办法:将${}换成#{}。

转载于:https://www.cnblogs.com/orchid9/p/7987324.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值