zoukankan      html  css  js  c++  java
  • 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使用${}。

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

  • 相关阅读:
    查询计划Hash和查询Hash
    执行计划的重用
    执行计划组件、组件、老化
    执行计划的生成
    查询反模式
    T-SQL 公用表表达式(CTE)
    SQL 操作结果集 -并集、差集、交集、结果集排序
    SQL语句
    POJ 1821 单调队列+dp
    区间gcd问题 HDU 5869 离线+树状数组
  • 原文地址:https://www.cnblogs.com/orchid9/p/7987324.html
Copyright © 2011-2022 走看看