欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Mybatis There is no getter for property named 'xxxx' in 'class java.lang.String'

程序员文章站 2022-07-15 13:45:54
...

There is no getter for property named ‘xxxx’ in ‘class java.lang.String’

	 <where>
            <if test="xxx!=null and xxx!=''">
                and e.name like concat('%',#{xxx},'%')
            </if>
	 </where>

吧上面的原代码改成下图就好了。

 		<where>
            <if test="_parameter!=null and _parameter!=''">
                and e.name like concat('%',#{xxx},'%')
            </if>
        </where>