当前位置 博文首页 > 文章内容

    Mybatis查询sql传入一个字符串传参数,报There is no getter for property named 'ids' in 'class java.lang.String'。

    作者: 栏目:未分类 时间:2020-07-10 14:01:54

    本站于2023年9月4日。收到“大连君*****咨询有限公司”通知
    说我们IIS7站长博客,有一篇博文用了他们的图片。
    要求我们给他们一张图片6000元。要不然法院告我们

    为避免不必要的麻烦,IIS7站长博客,全站内容图片下架、并积极应诉
    博文内容全部不再显示,请需要相关资讯的站长朋友到必应搜索。谢谢!

    另祝:版权碰瓷诈骗团伙,早日弃暗投明。

    相关新闻:借版权之名、行诈骗之实,周某因犯诈骗罪被判处有期徒刑十一年六个月

    叹!百花齐放的时代,渐行渐远!



    Mybatis查询sql传入一个字符串传参数,报There is no getter for property named 'ids' in 'class java.lang.String'。

    解决方法:

    1.在接口参数里加上mybatis中的@param注解

    @MyBatisDao
    public interface OfficeDao extends TreeDao<Office> {
    List<Office> findCompanyNameList(@Param("name")String name);
    }
    <select id="findCompanyNameList" parameterType="java.lang.String" resultType="com.pds.modules.sys.entity.Office">
        SELECT id,name FROM sys_office  where o.del_flag = '1'
           <if test="name!= null and name!= ''">
               AND name LIKE concat('%',#{name},'%')
           </if>
    </select>

     

    2.在xml的if里用"_parameter" 代表参数,

    <select id="findCompanyNameList" parameterType="java.lang.String" resultType="com.pds.modules.sys.entity.Office">
        SELECT id,name FROM sys_office  where o.del_flag = '1'
           <if test="_parameter!= null and _parameter!= ''">
               AND name LIKE concat('%',#{name},'%')
           </if>
    </select>

      或无论参数名是啥,都要改成"_parameter"

     <select id="findByName" parameterType="string" resultType="com.domain.entity.FactoryEntity">
         SELECT * FROM T_FACTORY WHERE F_NAME LIKE "%${_parameter}%"
        </select>

     

    两种方法区别

    可以看出,_parameter不能区分多个参数,而@param能。所以@param能传多个这样的参数

    3.将String参数放入Map集合中

    Map map=new HashMap();
            map.put("condition",condition);
    
            List list=bookMapper.bookList(map);
    <select id="bookList" parameterType="map" resultMap="BaseResultMap">
        select
        <include refid="Base_Column_List" />
        from book
        <if test="condition!= null">
          where bname like '%${condition}%' or author like '%${condition}%'
        </if>
      </select>

     

     

    参照:

    https://blog.csdn.net/zcl_love_wx/article/details/78601481

    https://www.cnblogs.com/xmzJava/p/7245574.html