zoukankan      html  css  js  c++  java
  • _parameter:解决There is no getter for property named in class java.lang.String

    我们知道在mybatis的映射中传参数,只能传入一个。通过#{参数名} 即可获取传入的值。

    Mapper接口文件:

    public int delete(int id) throws Exception;
    1
    MapperL配置文件:

    <delete id="delete" parameterType="int">
    delete from user where id=#{id}
    </delete>
    1
    2
    3
    接口中我们定义了delete(int id),形参的名称为id。顺理成章的在sql段里就用#{id}去获取。
    其实这里的”参数名”可以是任意的。
    因为JAVA反射只能获取方法参数的类型,但无从得知方法参数的名字的
    上面这个例子把#{id}换成#{di},一样运行。当然为了便于阅读代码,还是用#{id}。
    _parameter则是java对通过反射获取参数后,给参数取的别名。所以用#{_parameter}也行。

    但有几种情况你必须得用_parameter:

    第一种情况:拼接字符${}。咱这里先不去考虑SQL注入这些问题。

    public List<User> findByName(String searchkey) throws Exception;
    1
    <select id="findByName" parameterType="String" resultType="twm.mybatisdemo.pojo.User">
    select * from user where username like '%${searchkey}%'
    </select>
    1
    2
    3
    因为要使用模糊查询。要在入参前后加上%,所以不能用占位符#{},而要用拼接字符串。因此我们理所当然的接入。因此我们理所当然的接入{searchkey}
    一切都似乎没有问题,运行,报错:
    Exception in thread “main”
    org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause:
    org.apache.ibatis.reflection.ReflectionException: There is no getter for property named ‘searchkey’ in ‘class java.lang.String’ ### Cause:
    org.apache.ibatis.reflection.ReflectionException: There is no getter for property named ‘searchkey’ in ‘class java.lang.String’

    问题就出在拼接字符串${searchkey}。和占位符#{}不同的是,java不会自动将${searchkey}对应成_parameter。因此只能自己写

    <select id="findByName" parameterType="String" resultType="twm.mybatisdemo.pojo.User">
    select * from user where username like '%${_parameter}%'
    </select>
    1
    2
    3
    OK,一切又正常了。
    可是你没有觉得这种写法太不赏必悦目了?

    mybatis考虑到这点,你只需在接口的方法参数前加上param注解就好了。
    public List<User> findByName(@Param(value="searchkey") String searchkey) throws Exception;

    第二种情况:动态SQL中的条件判断语句中

    public List<User> findByName(String searchkey) throws Exception;
    1
    <select id="findByName" parameterType="String" resultType="twm.mybatisdemo.pojo.User">
    <bind name="likestr" value="'%'+ searchkey +'%'"></bind>
    select * from user
    <where>
    <if test="searchkey !='' and searchkey !=null">
    username like #{likestr}
    </if>
    </where>
    </select>
    1
    2
    3
    4
    5
    6
    7
    8
    9
    在if和bind元素中涉及到参数searchkey。直接使用searchkey也会报上面一样的错误
    解决办法就是用_parameter替换searchkey

    或者在接口的方法参数前加上param注解。

    public List<User> findByName(@Param(value="searchkey") String searchkey) throws Exception;
    ---------------------

    原文:https://blog.csdn.net/soonfly/article/details/63385018

  • 相关阅读:
    React + Webpack搭建环境
    iOS 中block中使用了外部变量的分析
    研究Extension和Category的一个例子
    43. Multiply Strings
    安装cocoapods
    iOS推送流程
    iOS中富文本NSMutableAttributedString的用法
    用杯赛尔曲线(做动画和绘图)
    字符串转换为长整型 strtol
    使用DirectUI
  • 原文地址:https://www.cnblogs.com/EveningWind/p/10861136.html
Copyright © 2011-2022 走看看